home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / prog / gnu-c / src / gcc-2.7.0-amiga / protoize.c < prev    next >
C/C++ Source or Header  |  1995-08-24  |  151KB  |  4,781 lines

  1. /* Protoize program - Original version by Ron Guilmette (rfg@segfault.us.com).
  2.    Copyright (C) 1989, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU CC.
  5.  
  6. GNU CC is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. GNU CC is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU CC; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 59 Temple Place - Suite 330,
  19. Boston, MA 02111-1307, USA.  */
  20.  
  21. /* Any reasonable C++ compiler should have all of the same features
  22.    as __STDC__ plus more, so make sure that __STDC__ is defined if
  23.    __cplusplus is defined. */
  24.  
  25. #if defined(__cplusplus) && !defined(__STDC__)
  26. #define __STDC__ 1
  27. #endif /* defined(__cplusplus) && !defined(__STDC__) */
  28.  
  29. #if defined(__GNUC__) || defined (__GNUG__)
  30. #define VOLATILE volatile
  31. #else
  32. #define VOLATILE
  33. #endif
  34.  
  35. #ifndef __STDC__
  36. #define const
  37. #define volatile
  38. #endif
  39.  
  40. #include "config.h"
  41.  
  42. #if 0
  43. /* Users are not supposed to use _POSIX_SOURCE to say the
  44.    system is a POSIX system.  That is not what _POSIX_SOURCE means! -- rms  */ 
  45. /* If the user asked for POSIX via _POSIX_SOURCE, turn on POSIX code.  */
  46. #if defined(_POSIX_SOURCE) && !defined(POSIX)
  47. #define POSIX
  48. #endif
  49. #endif /* 0 */
  50.  
  51. #ifdef POSIX /* We should be able to define _POSIX_SOURCE unconditionally,
  52.         but some systems respond in buggy ways to it,
  53.         including SunOS 4.1.1.  Which we don't classify as POSIX.  */
  54. /* In case this is a POSIX system with an ANSI C compiler,
  55.    ask for definition of all POSIX facilities.  */
  56. #undef _POSIX_SOURCE
  57. #define _POSIX_SOURCE
  58. #endif
  59.  
  60. #include <varargs.h>
  61. /* On some systems stdio.h includes stdarg.h;
  62.    we must bring in varargs.h first.  */
  63. #include <stdio.h>
  64. #include <ctype.h>
  65. #include <errno.h>
  66. #include <sys/types.h>
  67. #include <sys/stat.h>
  68. #ifndef _WIN32
  69. #if defined(POSIX) || defined(CONCURRENT)
  70. #include <dirent.h>
  71. #else
  72. #include <sys/dir.h>
  73. #endif
  74. #endif
  75. #include <setjmp.h>
  76.  
  77. /* Include getopt.h for the sake of getopt_long.
  78.    We don't need the declaration of getopt, and it could conflict
  79.    with something from a system header file, so effectively nullify that.  */
  80. #define getopt getopt_loser
  81. #include "getopt.h"
  82. #undef getopt
  83.  
  84. #ifndef errno
  85. extern int errno;
  86. #endif
  87.  
  88. #ifndef HAVE_STRERROR
  89. extern int sys_nerr;
  90. #if defined(bsd4_4)
  91. extern const char *const sys_errlist[];
  92. #else
  93. extern char *sys_errlist[];
  94. #endif
  95. #else
  96. extern char *strerror();
  97. #endif
  98.  
  99. extern char *version_string;
  100.  
  101. /* Systems which are compatible only with POSIX 1003.1-1988 (but *not*
  102.    with POSIX 1003.1-1990), e.g. Ultrix 4.2, might not have
  103.    const qualifiers in the prototypes in the system include files.
  104.    Unfortunately, this can lead to GCC issuing lots of warnings for
  105.    calls to the following functions.  To eliminate these warnings we
  106.    provide the following #defines.  */
  107.  
  108. #define my_access(file,flag)    access((char *)file, flag)
  109. #define my_stat(file,pkt)    stat((char *)file, pkt)
  110. #define my_execvp(prog,argv)    execvp((char *)prog, (char **)argv)
  111. #define my_link(file1, file2)    link((char *)file1, (char *)file2)
  112. #define my_unlink(file)        unlink((char *)file)
  113. #define my_open(file, mode, flag)    open((char *)file, mode, flag)
  114. #define my_chmod(file, mode)    chmod((char *)file, mode)
  115.  
  116. extern char *getpwd ();
  117.  
  118. /* Aliases for pointers to void.
  119.    These were made to facilitate compilation with old brain-dead DEC C
  120.    compilers which didn't properly grok `void*' types.  */
  121.  
  122. #ifdef __STDC__
  123. typedef void * pointer_type;
  124. typedef const void * const_pointer_type;
  125. #else
  126. typedef char * pointer_type;
  127. typedef char * const_pointer_type;
  128. #endif
  129.  
  130. #if defined(POSIX)
  131.  
  132. #include <stdlib.h>
  133. #include <unistd.h>
  134. #include <signal.h>
  135. #include <fcntl.h>
  136. #include <sys/wait.h>
  137.  
  138. #else /* !defined(POSIX) */
  139.  
  140. #define R_OK    4       /* Test for Read permission */
  141. #define W_OK    2       /* Test for Write permission */
  142. #define X_OK    1       /* Test for eXecute permission */
  143. #define F_OK    0       /* Test for existence of File */
  144.  
  145. #ifndef O_RDONLY
  146. #define O_RDONLY        0
  147. #endif
  148.  
  149. #ifndef O_WRONLY
  150. #define O_WRONLY        1
  151. #endif
  152.  
  153. #ifndef WIFSIGNALED
  154. #define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f)
  155. #endif
  156. #ifndef WTERMSIG
  157. #define WTERMSIG(S) ((S) & 0x7f)
  158. #endif
  159. #ifndef WIFEXITED
  160. #define WIFEXITED(S) (((S) & 0xff) == 0)
  161. #endif
  162. #ifndef WEXITSTATUS
  163. #define WEXITSTATUS(S) (((S) & 0xff00) >> 8)
  164. #endif
  165.  
  166. /* Declaring stat or __flsbuf with a prototype
  167.    causes conflicts with system headers on some systems.  */
  168.  
  169. #ifndef abort
  170. typedef void voidfn ();
  171. extern VOLATILE voidfn abort;
  172. #endif
  173. #ifndef _WIN32
  174. extern int kill ();
  175. #endif
  176. extern int creat ();
  177. #if 0 /* These conflict with stdio.h on some systems.  */
  178. extern int fprintf (FILE *, const char *, ...);
  179. extern int printf (const char *, ...);
  180. extern int open (const char *, int, ...);
  181. #endif /* 0 */
  182. extern void exit ();
  183. extern void free ();
  184. extern int read ();
  185. extern int write ();
  186. extern int close ();
  187. extern int fflush ();
  188. extern int atoi ();
  189. extern int puts ();
  190. extern int fputs ();
  191. extern int fputc ();
  192. extern int link ();
  193. extern int unlink ();
  194. extern int access ();
  195. extern int execvp ();
  196.  
  197. #if 0 /* size_t from sys/types.h may fail to match GCC.
  198.      If so, we would get a warning from this.  */
  199. extern size_t   strlen ()
  200. #endif
  201.  
  202. /* Fork is not declared because the declaration caused a conflict
  203.    on the HPPA.  */
  204. #if !(defined (USG) || defined (VMS))
  205. #define fork vfork
  206. #endif /* (defined (USG) || defined (VMS)) */
  207.  
  208. #endif /* !defined (POSIX) */
  209.  
  210. extern char *rindex ();
  211.  
  212. /* Look for these where the `const' qualifier is intentionally cast aside.  */
  213.  
  214. #define NONCONST
  215.  
  216. /* Define a STRINGIFY macro that's right for ANSI or traditional C.  */
  217.  
  218. #ifdef __STDC__
  219. #define STRINGIFY(STRING) #STRING
  220. #else
  221. #define STRINGIFY(STRING) "STRING"
  222. #endif
  223.  
  224. /* Define a default place to find the SYSCALLS.X file.  */
  225.  
  226. #ifndef STD_PROTO_DIR
  227. #define STD_PROTO_DIR "/usr/local/lib"
  228. #endif /* !defined (STD_PROTO_DIR) */
  229.  
  230. /* Suffix of aux_info files.  */
  231.  
  232. static const char * const aux_info_suffix = ".X";
  233.  
  234. /* String to attach to filenames for saved versions of original files.  */
  235.  
  236. static const char * const save_suffix = ".save";
  237.  
  238. #ifndef UNPROTOIZE
  239.  
  240. /* File name of the file which contains descriptions of standard system
  241.    routines.  Note that we never actually do anything with this file per se,
  242.    but we do read in its corresponding aux_info file.  */
  243.  
  244. static const char syscalls_filename[] = "SYSCALLS.c";
  245.  
  246. /* Default place to find the above file.  */
  247.  
  248. static const char * const default_syscalls_dir = STD_PROTO_DIR;
  249.  
  250. /* Variable to hold the complete absolutized filename of the SYSCALLS.c.X
  251.    file.  */
  252.  
  253. static char * syscalls_absolute_filename;
  254.  
  255. #endif /* !defined (UNPROTOIZE) */
  256.  
  257. /* Type of the structure that holds information about macro unexpansions. */
  258.  
  259. struct unexpansion_struct {
  260.   const char *expanded;
  261.   const char *contracted;
  262. };
  263. typedef struct unexpansion_struct unexpansion;
  264.  
  265. /* A table of conversions that may need to be made for some (stupid) older
  266.    operating systems where these types are preprocessor macros rather than
  267.    typedefs (as they really ought to be).
  268.  
  269.    WARNING: The contracted forms must be as small (or smaller) as the
  270.    expanded forms, or else havoc will ensue.  */
  271.  
  272. static const unexpansion unexpansions[] = {
  273.   { "struct _iobuf", "FILE" },
  274.   { 0, 0 }
  275. };
  276.  
  277. /* The number of "primary" slots in the hash tables for filenames and for
  278.    function names.  This can be as big or as small as you like, except that
  279.    it must be a power of two.  */
  280.  
  281. #define HASH_TABLE_SIZE        (1 << 9)
  282.  
  283. /* Bit mask to use when computing hash values.  */
  284.  
  285. static const int hash_mask = (HASH_TABLE_SIZE - 1);
  286.  
  287. /* Make a table of default system include directories
  288.    just as it is done in cccp.c.  */
  289.  
  290. #ifndef STANDARD_INCLUDE_DIR
  291. #define STANDARD_INCLUDE_DIR "/usr/include"
  292. #endif
  293.  
  294. #ifndef LOCAL_INCLUDE_DIR
  295. #define LOCAL_INCLUDE_DIR "/usr/local/include"
  296. #endif
  297.  
  298. struct default_include { const char *fname; int cplusplus; } include_defaults[]
  299. #ifdef INCLUDE_DEFAULTS
  300.   = INCLUDE_DEFAULTS;
  301. #else
  302.   = {
  303.     /* Pick up GNU C++ specific include files.  */
  304.     { GPLUSPLUS_INCLUDE_DIR, 1},
  305. #ifdef CROSS_COMPILE
  306.     /* This is the dir for fixincludes.  Put it just before
  307.        the files that we fix.  */
  308.     { GCC_INCLUDE_DIR, 0},
  309.     /* For cross-compilation, this dir name is generated
  310.        automatically in Makefile.in.  */
  311.     { CROSS_INCLUDE_DIR, 0 },
  312.     /* This is another place that the target system's headers might be.  */
  313.     { TOOL_INCLUDE_DIR, 0},
  314. #else /* not CROSS_COMPILE */
  315.     /* This should be /use/local/include and should come before
  316.        the fixincludes-fixed header files.  */
  317.     { LOCAL_INCLUDE_DIR, 0},
  318.     /* This is here ahead of GCC_INCLUDE_DIR because assert.h goes here.
  319.        Likewise, behind LOCAL_INCLUDE_DIR, where glibc puts its assert.h.  */
  320.     { TOOL_INCLUDE_DIR, 0},
  321.     /* This is the dir for fixincludes.  Put it just before
  322.        the files that we fix.  */
  323.     { GCC_INCLUDE_DIR, 0},
  324.     /* Some systems have an extra dir of include files.  */
  325. #ifdef SYSTEM_INCLUDE_DIR
  326.     { SYSTEM_INCLUDE_DIR, 0},
  327. #endif
  328.     { STANDARD_INCLUDE_DIR, 0},
  329. #endif /* not CROSS_COMPILE */
  330.     { 0, 0}
  331.     };
  332. #endif /* no INCLUDE_DEFAULTS */
  333.  
  334. /* Datatype for lists of directories or filenames.  */
  335. struct string_list
  336. {
  337.   char *name;
  338.   struct string_list *next;
  339. };
  340.  
  341. /* List of directories in which files should be converted.  */
  342.  
  343. struct string_list *directory_list;
  344.  
  345. /* List of file names which should not be converted.
  346.    A file is excluded if the end of its name, following a /,
  347.    matches one of the names in this list.  */
  348.  
  349. struct string_list *exclude_list;
  350.  
  351. /* The name of the other style of variable-number-of-parameters functions
  352.    (i.e. the style that we want to leave unconverted because we don't yet
  353.    know how to convert them to this style.  This string is used in warning
  354.    messages.  */
  355.  
  356. /* Also define here the string that we can search for in the parameter lists
  357.    taken from the .X files which will unambiguously indicate that we have
  358.    found a varargs style function.  */
  359.  
  360. #ifdef UNPROTOIZE
  361. static const char * const other_var_style = "stdarg";
  362. #else /* !defined (UNPROTOIZE) */
  363. static const char * const other_var_style = "varargs";
  364. /* Note that this is a string containing the expansion of va_alist.
  365.    But in `main' we discard all but the first token.  */
  366. static const char *varargs_style_indicator = STRINGIFY (va_alist);
  367. #endif /* !defined (UNPROTOIZE) */
  368.  
  369. /* The following two types are used to create hash tables.  In this program,
  370.    there are two hash tables which are used to store and quickly lookup two
  371.    different classes of strings.  The first type of strings stored in the
  372.    first hash table are absolute filenames of files which protoize needs to
  373.    know about.  The second type of strings (stored in the second hash table)
  374.    are function names.  It is this second class of strings which really
  375.    inspired the use of the hash tables, because there may be a lot of them.  */
  376.  
  377. typedef struct hash_table_entry_struct hash_table_entry;
  378.  
  379. /* Do some typedefs so that we don't have to write "struct" so often.  */
  380.  
  381. typedef struct def_dec_info_struct def_dec_info;
  382. typedef struct file_info_struct file_info;
  383. typedef struct f_list_chain_item_struct f_list_chain_item;
  384.  
  385. /* In the struct below, note that the "_info" field has two different uses
  386.    depending on the type of hash table we are in (i.e. either the filenames
  387.    hash table or the function names hash table).  In the filenames hash table
  388.    the info fields of the entries point to the file_info struct which is
  389.    associated with each filename (1 per filename).  In the function names
  390.    hash table, the info field points to the head of a singly linked list of
  391.    def_dec_info entries which are all defs or decs of the function whose
  392.    name is pointed to by the "symbol" field.  Keeping all of the defs/decs
  393.    for a given function name on a special list specifically for that function
  394.    name makes it quick and easy to find out all of the important information
  395.    about a given (named) function.  */
  396.  
  397. struct hash_table_entry_struct {
  398.   hash_table_entry *        hash_next;    /* -> to secondary entries */
  399.   const char *            symbol;        /* -> to the hashed string */
  400.   union {
  401.     const def_dec_info *    _ddip;
  402.     file_info *            _fip;
  403.   } _info;
  404. };
  405. #define ddip _info._ddip
  406. #define fip _info._fip
  407.  
  408. /* Define a type specifically for our two hash tables.  */
  409.  
  410. typedef hash_table_entry hash_table[HASH_TABLE_SIZE];
  411.  
  412. /* The following struct holds all of the important information about any
  413.    single filename (e.g. file) which we need to know about.  */
  414.  
  415. struct file_info_struct {
  416.   const hash_table_entry *    hash_entry; /* -> to associated hash entry */
  417.   const def_dec_info *        defs_decs;  /* -> to chain of defs/decs */
  418.   time_t            mtime;      /* Time of last modification.  */
  419. };
  420.  
  421. /* Due to the possibility that functions may return pointers to functions,
  422.    (which may themselves have their own parameter lists) and due to the
  423.    fact that returned pointers-to-functions may be of type "pointer-to-
  424.    function-returning-pointer-to-function" (ad nauseum) we have to keep
  425.    an entire chain of ANSI style formal parameter lists for each function.
  426.  
  427.    Normally, for any given function, there will only be one formals list
  428.    on the chain, but you never know.
  429.  
  430.    Note that the head of each chain of formals lists is pointed to by the
  431.    `f_list_chain' field of the corresponding def_dec_info record.
  432.  
  433.    For any given chain, the item at the head of the chain is the *leftmost*
  434.    parameter list seen in the actual C language function declaration.  If
  435.    there are other members of the chain, then these are linked in left-to-right
  436.    order from the head of the chain.  */
  437.  
  438. struct f_list_chain_item_struct {
  439.   const f_list_chain_item *    chain_next;    /* -> to next item on chain */
  440.   const char *            formals_list;    /* -> to formals list string */
  441. };
  442.  
  443. /* The following struct holds all of the important information about any
  444.    single function definition or declaration which we need to know about.
  445.    Note that for unprotoize we don't need to know very much because we
  446.    never even create records for stuff that we don't intend to convert
  447.    (like for instance defs and decs which are already in old K&R format
  448.    and "implicit" function declarations).  */
  449.  
  450. struct def_dec_info_struct {
  451.   const def_dec_info *    next_in_file;    /* -> to rest of chain for file */
  452.   file_info *            file;        /* -> file_info for containing file */
  453.   int                line;        /* source line number of def/dec */
  454.   const char *        ansi_decl;    /* -> left end of ansi decl */
  455.   hash_table_entry *    hash_entry;    /* -> hash entry for function name */
  456.   unsigned int            is_func_def;    /* = 0 means this is a declaration */
  457.   const def_dec_info *    next_for_func;    /* -> to rest of chain for func name */
  458.   unsigned int        f_list_count;    /* count of formals lists we expect */
  459.   char            prototyped;    /* = 0 means already prototyped */
  460. #ifndef UNPROTOIZE
  461.   const f_list_chain_item * f_list_chain;    /* -> chain of formals lists */
  462.   const def_dec_info *    definition;    /* -> def/dec containing related def */
  463.   char                is_static;    /* = 0 means visibility is "extern"  */
  464.   char            is_implicit;    /* != 0 for implicit func decl's */
  465.   char            written;    /* != 0 means written for implicit */
  466. #else /* !defined (UNPROTOIZE) */
  467.   const char *        formal_names;    /* -> to list of names of formals */
  468.   const char *        formal_decls;    /* -> to string of formal declarations */
  469. #endif /* !defined (UNPROTOIZE) */
  470. };
  471.  
  472. /* Pointer to the tail component of the filename by which this program was
  473.    invoked.  Used everywhere in error and warning messages.  */
  474.  
  475. static const char *pname;
  476.  
  477. /* Error counter.  Will be non-zero if we should give up at the next convenient
  478.    stopping point.  */
  479.  
  480. static int errors = 0;
  481.  
  482. /* Option flags.  */
  483. /* ??? These comments should say what the flag mean as well as the options
  484.    that set them.  */
  485.  
  486. /* File name to use for running gcc.  Allows GCC 2 to be named
  487.    something other than gcc.  */
  488. static const char *compiler_file_name = "gcc";
  489.  
  490. static int version_flag = 0;        /* Print our version number.  */
  491. static int quiet_flag = 0;        /* Don't print messages normally.  */
  492. static int nochange_flag = 0;        /* Don't convert, just say what files
  493.                        we would have converted.  */
  494. static int nosave_flag = 0;        /* Don't save the old version.  */
  495. static int keep_flag = 0;        /* Don't delete the .X files.  */
  496. static const char ** compile_params = 0;    /* Option string for gcc.  */
  497. #ifdef UNPROTOIZE
  498. static const char *indent_string = "     ";    /* Indentation for newly
  499.                            inserted parm decls.  */
  500. #else /* !defined (UNPROTOIZE) */
  501. static int local_flag = 0;        /* Insert new local decls (when?).  */
  502. static int global_flag = 0;        /* set by -g option */
  503. static int cplusplus_flag = 0;        /* Rename converted files to *.C.  */
  504. static const char* nondefault_syscalls_dir = 0; /* Dir to look for
  505.                            SYSCALLS.c.X in.  */
  506. #endif /* !defined (UNPROTOIZE) */
  507.  
  508. /* An index into the compile_params array where we should insert the source
  509.    file name when we are ready to exec the C compiler.  A zero value indicates
  510.    that we have not yet called munge_compile_params.  */
  511.  
  512. static int input_file_name_index = 0;
  513.  
  514. /* An index into the compile_params array where we should insert the filename
  515.    for the aux info file, when we run the C compiler.  */
  516. static int aux_info_file_name_index = 0;
  517.  
  518. /* Count of command line arguments which were "filename" arguments.  */
  519.  
  520. static int n_base_source_files = 0;
  521.  
  522. /* Points to a malloc'ed list of pointers to all of the filenames of base
  523.    source files which were specified on the command line.  */
  524.  
  525. static const char **base_source_filenames;
  526.  
  527. /* Line number of the line within the current aux_info file that we
  528.    are currently processing.  Used for error messages in case the prototypes
  529.    info file is corrupted somehow.  */
  530.  
  531. static int current_aux_info_lineno;
  532.  
  533. /* Pointer to the name of the source file currently being converted.  */
  534.  
  535. static const char *convert_filename;
  536.  
  537. /* Pointer to relative root string (taken from aux_info file) which indicates
  538.    where directory the user was in when he did the compilation step that
  539.    produced the containing aux_info file. */
  540.  
  541. static const char *invocation_filename;
  542.  
  543. /* Pointer to the base of the input buffer that holds the original text for the
  544.    source file currently being converted.  */
  545.  
  546. static const char *orig_text_base;
  547.  
  548. /* Pointer to the byte just beyond the end of the input buffer that holds the
  549.    original text for the source file currently being converted.  */
  550.  
  551. static const char *orig_text_limit;
  552.  
  553. /* Pointer to the base of the input buffer that holds the cleaned text for the
  554.    source file currently being converted.  */
  555.  
  556. static const char *clean_text_base;
  557.  
  558. /* Pointer to the byte just beyond the end of the input buffer that holds the
  559.    cleaned text for the source file currently being converted.  */
  560.  
  561. static const char *clean_text_limit;
  562.  
  563. /* Pointer to the last byte in the cleaned text buffer that we have already
  564.    (virtually) copied to the output buffer (or decided to ignore).  */
  565.  
  566. static const char * clean_read_ptr;
  567.  
  568. /* Pointer to the base of the output buffer that holds the replacement text
  569.    for the source file currently being converted.  */
  570.  
  571. static char *repl_text_base;
  572.  
  573. /* Pointer to the byte just beyond the end of the output buffer that holds the
  574.    replacement text for the source file currently being converted.  */
  575.  
  576. static char *repl_text_limit;
  577.  
  578. /* Pointer to the last byte which has been stored into the output buffer.
  579.    The next byte to be stored should be stored just past where this points
  580.    to.  */
  581.  
  582. static char * repl_write_ptr;
  583.  
  584. /* Pointer into the cleaned text buffer for the source file we are currently
  585.    converting.  This points to the first character of the line that we last
  586.    did a "seek_to_line" to (see below).  */
  587.  
  588. static const char *last_known_line_start;
  589.  
  590. /* Number of the line (in the cleaned text buffer) that we last did a
  591.    "seek_to_line" to.  Will be one if we just read a new source file
  592.    into the cleaned text buffer.  */
  593.  
  594. static int last_known_line_number;
  595.  
  596. /* The filenames hash table.  */
  597.  
  598. static hash_table filename_primary;
  599.  
  600. /* The function names hash table.  */
  601.  
  602. static hash_table function_name_primary;
  603.  
  604. /* The place to keep the recovery address which is used only in cases where
  605.    we get hopelessly confused by something in the cleaned original text.  */
  606.  
  607. static jmp_buf source_confusion_recovery;
  608.  
  609. /* A pointer to the current directory filename (used by abspath).  */
  610.  
  611. static char *cwd_buffer;
  612.  
  613. /* A place to save the read pointer until we are sure that an individual
  614.    attempt at editing will succeed.  */
  615.  
  616. static const char * saved_clean_read_ptr;
  617.  
  618. /* A place to save the write pointer until we are sure that an individual
  619.    attempt at editing will succeed.  */
  620.  
  621. static char * saved_repl_write_ptr;
  622.  
  623. /* Forward declaration.  */
  624.  
  625. static const char *shortpath ();
  626.  
  627. char *
  628. my_strerror(e)
  629.      int e;
  630. {
  631.  
  632. #ifdef HAVE_STRERROR
  633.   return strerror(e);
  634.  
  635. #else
  636.  
  637.   static char buffer[30];
  638.   if (!e)
  639.     return "";
  640.  
  641.   if (e > 0 && e < sys_nerr)
  642.     return sys_errlist[e];
  643.  
  644.   sprintf (buffer, "Unknown error %d", e);
  645.   return buffer;
  646. #endif
  647. }
  648.  
  649. /* Allocate some space, but check that the allocation was successful.  */
  650. /* alloca.c uses this, so don't make it static.  */
  651.  
  652. pointer_type
  653. xmalloc (byte_count)
  654.      size_t byte_count;
  655. {
  656.   pointer_type rv;
  657.  
  658.   rv = (pointer_type) malloc (byte_count);
  659.   if (rv == NULL)
  660.     {
  661.       fprintf (stderr, "\n%s: virtual memory exceeded\n", pname);
  662.       exit (1);
  663.       return 0;        /* avoid warnings */
  664.     }
  665.   else
  666.     return rv;
  667. }
  668.  
  669. /* Reallocate some space, but check that the reallocation was successful.  */
  670.  
  671. pointer_type
  672. xrealloc (old_space, byte_count)
  673.      pointer_type old_space;
  674.      size_t byte_count;
  675. {
  676.   pointer_type rv;
  677.  
  678.   rv = (pointer_type) realloc (old_space, byte_count);
  679.   if (rv == NULL)
  680.     {
  681.       fprintf (stderr, "\n%s: virtual memory exceeded\n", pname);
  682.       exit (1);
  683.       return 0;        /* avoid warnings */
  684.     }
  685.   else
  686.     return rv;
  687. }
  688.  
  689. /* Deallocate the area pointed to by an arbitrary pointer, but first, strip
  690.    the `const' qualifier from it and also make sure that the pointer value
  691.    is non-null.  */
  692.  
  693. void
  694. xfree (p)
  695.      const_pointer_type p;
  696. {
  697.   if (p)
  698.     free ((NONCONST pointer_type) p);
  699. }
  700.  
  701. /* Make a copy of a string INPUT with size SIZE.  */
  702.  
  703. static char *
  704. savestring (input, size)
  705.      const char *input;
  706.      unsigned int size;
  707. {
  708.   char *output = (char *) xmalloc (size + 1);
  709.   strcpy (output, input);
  710.   return output;
  711. }
  712.  
  713. /* Make a copy of the concatenation of INPUT1 and INPUT2.  */
  714.  
  715. static char *
  716. savestring2 (input1, size1, input2, size2)
  717.      const char *input1;
  718.      unsigned int size1;
  719.      const char *input2;
  720.      unsigned int size2;
  721. {
  722.   char *output = (char *) xmalloc (size1 + size2 + 1);
  723.   strcpy (output, input1);
  724.   strcpy (&output[size1], input2);
  725.   return output;
  726. }
  727.  
  728. /* More 'friendly' abort that prints the line and file.
  729.    config.h can #define abort fancy_abort if you like that sort of thing.  */
  730.  
  731. void
  732. fancy_abort ()
  733. {
  734.   fprintf (stderr, "%s: internal abort\n", pname);
  735.   exit (1);
  736. }
  737.  
  738. /* Make a duplicate of the first N bytes of a given string in a newly
  739.    allocated area.  */
  740.  
  741. static char *
  742. dupnstr (s, n)
  743.      const char *s;
  744.      size_t n;
  745. {
  746.   char *ret_val = (char *) xmalloc (n + 1);
  747.  
  748.   strncpy (ret_val, s, n);
  749.   ret_val[n] = '\0';
  750.   return ret_val;
  751. }
  752.  
  753. /* Return a pointer to the first occurrence of s2 within s1 or NULL if s2
  754.    does not occur within s1.  Assume neither s1 nor s2 are null pointers.  */
  755.  
  756. static const char *
  757. substr (s1, s2)
  758.      const char *s1;
  759.      const char *const s2;
  760. {
  761.   for (; *s1 ; s1++)
  762.     {
  763.       const char *p1;
  764.       const char *p2;
  765.       int c;
  766.  
  767.       for (p1 = s1, p2 = s2; c = *p2; p1++, p2++)
  768.         if (*p1 != c)
  769.           goto outer;
  770.       return s1;
  771. outer:
  772.       ;
  773.     }
  774.   return 0;
  775. }
  776.  
  777. /* Read LEN bytes at PTR from descriptor DESC, for file FILENAME,
  778.    retrying if necessary.  Return the actual number of bytes read.  */
  779.  
  780. static int
  781. safe_read (desc, ptr, len)
  782.      int desc;
  783.      char *ptr;
  784.      int len;
  785. {
  786.   int left = len;
  787.   while (left > 0) {
  788.     int nchars = read (desc, ptr, left);
  789.     if (nchars < 0)
  790.       {
  791. #ifdef EINTR
  792.     if (errno == EINTR)
  793.       continue;
  794. #endif
  795.     return nchars;
  796.       }
  797.     if (nchars == 0)
  798.       break;
  799.     ptr += nchars;
  800.     left -= nchars;
  801.   }
  802.   return len - left;
  803. }
  804.  
  805. /* Write LEN bytes at PTR to descriptor DESC,
  806.    retrying if necessary, and treating any real error as fatal.  */
  807.  
  808. static void
  809. safe_write (desc, ptr, len, out_fname)
  810.      int desc;
  811.      char *ptr;
  812.      int len;
  813.      char *out_fname;
  814. {
  815.   while (len > 0) {
  816.     int written = write (desc, ptr, len);
  817.     if (written < 0)
  818.       {
  819. #ifdef EINTR
  820.     if (errno == EINTR)
  821.       continue;
  822. #endif
  823.     fprintf (stderr, "%s: error writing file `%s': %s\n",
  824.          pname, shortpath (NULL, out_fname), my_strerror(errno));
  825.     return;
  826.       }
  827.     ptr += written;
  828.     len -= written;
  829.   }
  830. }
  831.  
  832. /* Get setup to recover in case the edit we are about to do goes awry.  */
  833.  
  834. void
  835. save_pointers ()
  836. {
  837.   saved_clean_read_ptr = clean_read_ptr;
  838.   saved_repl_write_ptr = repl_write_ptr;
  839. }
  840.  
  841. /* Call this routine to recover our previous state whenever something looks
  842.    too confusing in the source code we are trying to edit.  */
  843.  
  844. void
  845. restore_pointers ()
  846. {
  847.   clean_read_ptr = saved_clean_read_ptr;
  848.   repl_write_ptr = saved_repl_write_ptr;
  849. }
  850.  
  851. /* Return true if the given character is a valid identifier character.  */
  852.  
  853. static int
  854. is_id_char (ch)
  855.      char ch;
  856. {
  857.   return (isalnum (ch) || (ch == '_') || (ch == '$'));
  858. }
  859.  
  860. /* Give a message indicating the proper way to invoke this program and then
  861.    exit with non-zero status.  */
  862.  
  863. static void
  864. usage ()
  865. {
  866. #ifdef UNPROTOIZE
  867.   fprintf (stderr, "%s: usage '%s [ -VqfnkN ] [ -i <istring> ] [ filename ... ]'\n",
  868.        pname, pname);
  869. #else /* !defined (UNPROTOIZE) */
  870.   fprintf (stderr, "%s: usage '%s [ -VqfnkNlgC ] [ -B <diname> ] [ filename ... ]'\n",
  871.        pname, pname);
  872. #endif /* !defined (UNPROTOIZE) */
  873.   exit (1);
  874. }
  875.  
  876. /* Return true if the given filename (assumed to be an absolute filename)
  877.    designates a file residing anywhere beneath any one of the "system"
  878.    include directories.  */
  879.  
  880. static int
  881. in_system_include_dir (path)
  882.      const char *path;
  883. {
  884.   struct default_include *p;
  885.  
  886. #ifdef FILE_NAME_ABSOLUTE_P
  887.   if (! FILE_NAME_ABSOLUTE_P (path))
  888.     abort ();
  889. #else
  890.   if (path[0] != '/')
  891.     abort ();        /* Must be an absolutized filename.  */
  892. #endif
  893.  
  894.   for (p = include_defaults; p->fname; p++)
  895.     if (!strncmp (path, p->fname, strlen (p->fname))
  896.     && path[strlen (p->fname)] == '/')
  897.       return 1;
  898.   return 0;
  899. }
  900.  
  901. #if 0
  902. /* Return true if the given filename designates a file that the user has
  903.    read access to and for which the user has write access to the containing
  904.    directory.  */
  905.  
  906. static int
  907. file_could_be_converted (const char *path)
  908. {
  909.   char *const dir_name = (char *) alloca (strlen (path) + 1);
  910.  
  911.   if (my_access (path, R_OK))
  912.     return 0;
  913.  
  914.   {
  915.     char *dir_last_slash;
  916.  
  917.     strcpy (dir_name, path);
  918.     dir_last_slash = rindex (dir_name, '/');
  919.     if (dir_last_slash)
  920.       *dir_last_slash = '\0';
  921.     else
  922.       abort ();  /* Should have been an absolutized filename.  */
  923.   }
  924.  
  925.   if (my_access (path, W_OK))
  926.     return 0;
  927.  
  928.   return 1;
  929. }
  930.  
  931. /* Return true if the given filename designates a file that we are allowed
  932.    to modify.  Files which we should not attempt to modify are (a) "system"
  933.    include files, and (b) files which the user doesn't have write access to,
  934.    and (c) files which reside in directories which the user doesn't have
  935.    write access to.  Unless requested to be quiet, give warnings about
  936.    files that we will not try to convert for one reason or another.  An
  937.    exception is made for "system" include files, which we never try to
  938.    convert and for which we don't issue the usual warnings.  */
  939.  
  940. static int
  941. file_normally_convertible (const char *path)
  942. {
  943.   char *const dir_name = alloca (strlen (path) + 1);
  944.  
  945.   if (in_system_include_dir (path))
  946.     return 0;
  947.  
  948.   {
  949.     char *dir_last_slash;
  950.  
  951.     strcpy (dir_name, path);
  952.     dir_last_slash = rindex (dir_name, '/');
  953.     if (dir_last_slash)
  954.       *dir_last_slash = '\0';
  955.     else
  956.       abort ();  /* Should have been an absolutized filename.  */
  957.   }
  958.  
  959.   if (my_access (path, R_OK))
  960.     {
  961.       if (!quiet_flag)
  962.         fprintf (stderr, "%s: warning: no read access for file `%s'\n",
  963.          pname, shortpath (NULL, path));
  964.       return 0;
  965.     }
  966.  
  967.   if (my_access (path, W_OK))
  968.     {
  969.       if (!quiet_flag)
  970.         fprintf (stderr, "%s: warning: no write access for file `%s'\n",
  971.          pname, shortpath (NULL, path));
  972.       return 0;
  973.     }
  974.  
  975.   if (my_access (dir_name, W_OK))
  976.     {
  977.       if (!quiet_flag)
  978.         fprintf (stderr, "%s: warning: no write access for dir containing `%s'\n",
  979.          pname, shortpath (NULL, path));
  980.       return 0;
  981.     }
  982.  
  983.   return 1;
  984. }
  985. #endif /* 0 */
  986.  
  987. #ifndef UNPROTOIZE
  988.  
  989. /* Return true if the given file_info struct refers to the special SYSCALLS.c.X
  990.    file.  Return false otherwise.  */
  991.  
  992. static int
  993. is_syscalls_file (fi_p)
  994.      const file_info *fi_p;
  995. {
  996.   char const *f = fi_p->hash_entry->symbol;
  997.   size_t fl = strlen (f), sysl = sizeof (syscalls_filename) - 1;
  998.   return sysl <= fl  &&  strcmp (f + fl - sysl, syscalls_filename) == 0;
  999. }
  1000.  
  1001. #endif /* !defined (UNPROTOIZE) */
  1002.  
  1003. /* Check to see if this file will need to have anything done to it on this
  1004.    run.  If there is nothing in the given file which both needs conversion
  1005.    and for which we have the necessary stuff to do the conversion, return
  1006.    false.  Otherwise, return true.
  1007.  
  1008.    Note that (for protoize) it is only valid to call this function *after*
  1009.    the connections between declarations and definitions have all been made
  1010.    by connect_defs_and_decs.  */
  1011.  
  1012. static int
  1013. needs_to_be_converted (file_p)
  1014.      const file_info *file_p;
  1015. {
  1016.   const def_dec_info *ddp;
  1017.  
  1018. #ifndef UNPROTOIZE
  1019.  
  1020.   if (is_syscalls_file (file_p))
  1021.     return 0;
  1022.  
  1023. #endif /* !defined (UNPROTOIZE) */
  1024.  
  1025.   for (ddp = file_p->defs_decs; ddp; ddp = ddp->next_in_file)
  1026.  
  1027.     if (
  1028.  
  1029. #ifndef UNPROTOIZE
  1030.  
  1031.       /* ... and if we a protoizing and this function is in old style ... */
  1032.       !ddp->prototyped
  1033.       /* ... and if this a definition or is a decl with an associated def ... */
  1034.       && (ddp->is_func_def || (!ddp->is_func_def && ddp->definition))
  1035.  
  1036. #else /* defined (UNPROTOIZE) */
  1037.  
  1038.       /* ... and if we are unprotoizing and this function is in new style ... */
  1039.       ddp->prototyped
  1040.  
  1041. #endif /* defined (UNPROTOIZE) */
  1042.       )
  1043.           /* ... then the containing file needs converting.  */
  1044.           return -1;
  1045.   return 0;
  1046. }
  1047.  
  1048. /* Return 1 if the file name NAME is in a directory
  1049.    that should be converted.  */
  1050.  
  1051. static int
  1052. directory_specified_p (name)
  1053.      const char *name;
  1054. {
  1055.   struct string_list *p;
  1056.  
  1057.   for (p = directory_list; p; p = p->next)
  1058.     if (!strncmp (name, p->name, strlen (p->name))
  1059.     && name[strlen (p->name)] == '/')
  1060.       {
  1061.     const char *q = name + strlen (p->name) + 1;
  1062.  
  1063.     /* If there are more slashes, it's in a subdir, so
  1064.        this match doesn't count.  */
  1065.     while (*q)
  1066.       if (*q++ == '/')
  1067.         goto lose;
  1068.     return 1;
  1069.  
  1070.       lose: ;
  1071.       }
  1072.  
  1073.   return 0;
  1074. }
  1075.  
  1076. /* Return 1 if the file named NAME should be excluded from conversion.  */
  1077.  
  1078. static int
  1079. file_excluded_p (name)
  1080.      const char *name;
  1081. {
  1082.   struct string_list *p;
  1083.   int len = strlen (name);
  1084.  
  1085.   for (p = exclude_list; p; p = p->next)
  1086.     if (!strcmp (name + len - strlen (p->name), p->name)
  1087.     && name[len - strlen (p->name) - 1] == '/')
  1088.       return 1;
  1089.  
  1090.   return 0;
  1091. }
  1092.  
  1093. /* Construct a new element of a string_list.
  1094.    STRING is the new element value, and REST holds the remaining elements.  */
  1095.  
  1096. static struct string_list *
  1097. string_list_cons (string, rest)
  1098.      char *string;
  1099.      struct string_list *rest;
  1100. {
  1101.   struct string_list *temp
  1102.     = (struct string_list *) xmalloc (sizeof (struct string_list));
  1103.  
  1104.   temp->next = rest;
  1105.   temp->name = string;
  1106.   return temp;
  1107. }
  1108.  
  1109. /* ??? The GNU convention for mentioning function args in its comments
  1110.    is to capitalize them.  So change "hash_tab_p" to HASH_TAB_P below.
  1111.    Likewise for all the other functions.  */
  1112.  
  1113. /* Given a hash table, apply some function to each node in the table. The
  1114.    table to traverse is given as the "hash_tab_p" argument, and the
  1115.    function to be applied to each node in the table is given as "func"
  1116.    argument.  */
  1117.  
  1118. static void
  1119. visit_each_hash_node (hash_tab_p, func)
  1120.      const hash_table_entry *hash_tab_p;
  1121.      void (*func)();
  1122. {
  1123.   const hash_table_entry *primary;
  1124.  
  1125.   for (primary = hash_tab_p; primary < &hash_tab_p[HASH_TABLE_SIZE]; primary++)
  1126.     if (primary->symbol)
  1127.       {
  1128.         hash_table_entry *second;
  1129.  
  1130.         (*func)(primary);
  1131.         for (second = primary->hash_next; second; second = second->hash_next)
  1132.           (*func) (second);
  1133.       }
  1134. }
  1135.  
  1136. /* Initialize all of the fields of a new hash table entry, pointed
  1137.    to by the "p" parameter.  Note that the space to hold the entry
  1138.    is assumed to have already been allocated before this routine is
  1139.    called.  */
  1140.  
  1141. static hash_table_entry *
  1142. add_symbol (p, s)
  1143.      hash_table_entry *p;
  1144.      const char *s;
  1145. {
  1146.   p->hash_next = NULL;
  1147.   p->symbol = savestring (s, strlen (s));
  1148.   p->ddip = NULL;
  1149.   p->fip = NULL;
  1150.   return p;
  1151. }
  1152.  
  1153. /* Look for a particular function name or filename in the particular
  1154.    hash table indicated by "hash_tab_p".  If the name is not in the
  1155.    given hash table, add it.  Either way, return a pointer to the
  1156.    hash table entry for the given name.  */
  1157.  
  1158. static hash_table_entry *
  1159. lookup (hash_tab_p, search_symbol)
  1160.      hash_table_entry *hash_tab_p;
  1161.      const char *search_symbol;
  1162. {
  1163.   int hash_value = 0;
  1164.   const char *search_symbol_char_p = search_symbol;
  1165.   hash_table_entry *p;
  1166.  
  1167.   while (*search_symbol_char_p)
  1168.     hash_value += *search_symbol_char_p++;
  1169.   hash_value &= hash_mask;
  1170.   p = &hash_tab_p[hash_value];
  1171.   if (! p->symbol)
  1172.       return add_symbol (p, search_symbol);
  1173.   if (!strcmp (p->symbol, search_symbol))
  1174.     return p;
  1175.   while (p->hash_next)
  1176.     {
  1177.       p = p->hash_next;
  1178.       if (!strcmp (p->symbol, search_symbol))
  1179.         return p;
  1180.     }
  1181.   p->hash_next = (hash_table_entry *) xmalloc (sizeof (hash_table_entry));
  1182.   p = p->hash_next;
  1183.   return add_symbol (p, search_symbol);
  1184. }
  1185.  
  1186. /* Throw a def/dec record on the junk heap.
  1187.  
  1188.    Also, since we are not using this record anymore, free up all of the
  1189.    stuff it pointed to.  */
  1190.  
  1191. static void
  1192. free_def_dec (p)
  1193.      def_dec_info *p;
  1194. {
  1195.   xfree (p->ansi_decl);
  1196.  
  1197. #ifndef UNPROTOIZE
  1198.   {
  1199.     const f_list_chain_item * curr;
  1200.     const f_list_chain_item * next;
  1201.  
  1202.     for (curr = p->f_list_chain; curr; curr = next)
  1203.       {
  1204.         next = curr->chain_next;
  1205.         xfree (curr);
  1206.       }
  1207.   }
  1208. #endif /* !defined (UNPROTOIZE) */
  1209.  
  1210.   xfree (p);
  1211. }
  1212.  
  1213. /* Unexpand as many macro symbol as we can find.
  1214.  
  1215.    If the given line must be unexpanded, make a copy of it in the heap and
  1216.    return a pointer to the unexpanded copy.  Otherwise return NULL.  */
  1217.  
  1218. static char *
  1219. unexpand_if_needed (aux_info_line)
  1220.      const char *aux_info_line;
  1221. {
  1222.   static char *line_buf = 0;
  1223.   static int line_buf_size = 0;
  1224.   const unexpansion* unexp_p;
  1225.   int got_unexpanded = 0;
  1226.   const char *s;
  1227.   char *copy_p = line_buf;
  1228.  
  1229.   if (line_buf == 0)
  1230.     {
  1231.       line_buf_size = 1024;
  1232.       line_buf = (char *) xmalloc (line_buf_size);
  1233.     }
  1234.  
  1235.   copy_p = line_buf;
  1236.  
  1237.   /* Make a copy of the input string in line_buf, expanding as necessary.  */
  1238.  
  1239.   for (s = aux_info_line; *s != '\n'; )
  1240.     {
  1241.       for (unexp_p = unexpansions; unexp_p->expanded; unexp_p++)
  1242.         {
  1243.           const char *in_p = unexp_p->expanded;
  1244.           size_t len = strlen (in_p);
  1245.  
  1246.           if (*s == *in_p && !strncmp (s, in_p, len) && !is_id_char (s[len]))
  1247.             {
  1248.           int size = strlen (unexp_p->contracted);
  1249.               got_unexpanded = 1;
  1250.           if (copy_p + size - line_buf >= line_buf_size)
  1251.         {
  1252.           int offset = copy_p - line_buf;
  1253.           line_buf_size *= 2;
  1254.           line_buf_size += size;
  1255.           line_buf = (char *) xrealloc (line_buf, line_buf_size);
  1256.           copy_p = line_buf + offset;
  1257.         }
  1258.               strcpy (copy_p, unexp_p->contracted);
  1259.               copy_p += size;
  1260.  
  1261.               /* Assume the there will not be another replacement required
  1262.                  within the text just replaced.  */
  1263.  
  1264.               s += len;
  1265.               goto continue_outer;
  1266.             }
  1267.         }
  1268.       if (copy_p - line_buf == line_buf_size)
  1269.     {
  1270.       int offset = copy_p - line_buf;
  1271.       line_buf_size *= 2;
  1272.       line_buf = (char *) xrealloc (line_buf, line_buf_size);
  1273.       copy_p = line_buf + offset;
  1274.     }
  1275.       *copy_p++ = *s++;
  1276. continue_outer: ;
  1277.     }
  1278.   if (copy_p + 2 - line_buf >= line_buf_size)
  1279.     {
  1280.       int offset = copy_p - line_buf;
  1281.       line_buf_size *= 2;
  1282.       line_buf = (char *) xrealloc (line_buf, line_buf_size);
  1283.       copy_p = line_buf + offset;
  1284.     }
  1285.   *copy_p++ = '\n';
  1286.   *copy_p = '\0';
  1287.  
  1288.   return (got_unexpanded ? savestring (line_buf, copy_p - line_buf) : 0);
  1289. }
  1290.  
  1291. /* Return the absolutized filename for the given relative
  1292.    filename.  Note that if that filename is already absolute, it may
  1293.    still be returned in a modified form because this routine also
  1294.    eliminates redundant slashes and single dots and eliminates double
  1295.    dots to get a shortest possible filename from the given input
  1296.    filename.  The absolutization of relative filenames is made by
  1297.    assuming that the given filename is to be taken as relative to
  1298.    the first argument (cwd) or to the current directory if cwd is
  1299.    NULL.  */
  1300.  
  1301. static char *
  1302. abspath (cwd, rel_filename)
  1303.      const char *cwd;
  1304.      const char *rel_filename;
  1305. {
  1306.   /* Setup the current working directory as needed.  */
  1307.   const char *cwd2 = (cwd) ? cwd : cwd_buffer;
  1308.   char *const abs_buffer
  1309.     = (char *) alloca (strlen (cwd2) + strlen (rel_filename) + 2);
  1310.   char *endp = abs_buffer;
  1311.   char *outp, *inp;
  1312.  
  1313.   /* Copy the  filename (possibly preceded by the current working
  1314.      directory name) into the absolutization buffer.  */
  1315.  
  1316.   {
  1317.     const char *src_p;
  1318.  
  1319. #ifdef FILE_NAME_ABSOLUTE_P
  1320.     if (! FILE_NAME_ABSOLUTE_P (rel_filename))
  1321. #else
  1322.     if (rel_filename[0] != '/')
  1323. #endif
  1324.       {
  1325.         src_p = cwd2;
  1326.         while (*endp++ = *src_p++)
  1327.           continue;
  1328.         *(endp-1) = '/';                /* overwrite null */
  1329.       }
  1330.     src_p = rel_filename;
  1331.     while (*endp++ = *src_p++)
  1332.       continue;
  1333.   }
  1334.  
  1335.   /* Now make a copy of abs_buffer into abs_buffer, shortening the
  1336.      filename (by taking out slashes and dots) as we go.  */
  1337.  
  1338.   outp = inp = abs_buffer;
  1339.   *outp++ = *inp++;            /* copy first slash */
  1340. #ifdef apollo
  1341.   if (inp[0] == '/')
  1342.     *outp++ = *inp++;            /* copy second slash */
  1343. #endif
  1344.   for (;;)
  1345.     {
  1346.       if (!inp[0])
  1347.         break;
  1348.       else if (inp[0] == '/' && outp[-1] == '/')
  1349.         {
  1350.           inp++;
  1351.           continue;
  1352.         }
  1353.       else if (inp[0] == '.' && outp[-1] == '/')
  1354.         {
  1355.           if (!inp[1])
  1356.                   break;
  1357.           else if (inp[1] == '/')
  1358.             {
  1359.                     inp += 2;
  1360.                     continue;
  1361.             }
  1362.           else if ((inp[1] == '.') && (inp[2] == 0 || inp[2] == '/'))
  1363.             {
  1364.                     inp += (inp[2] == '/') ? 3 : 2;
  1365.                     outp -= 2;
  1366.                     while (outp >= abs_buffer && *outp != '/')
  1367.                   outp--;
  1368.                     if (outp < abs_buffer)
  1369.                 {
  1370.                   /* Catch cases like /.. where we try to backup to a
  1371.                      point above the absolute root of the logical file
  1372.                      system.  */
  1373.  
  1374.                     fprintf (stderr, "%s: invalid file name: %s\n",
  1375.                pname, rel_filename);
  1376.                     exit (1);
  1377.                   }
  1378.                     *++outp = '\0';
  1379.                     continue;
  1380.             }
  1381.         }
  1382.       *outp++ = *inp++;
  1383.     }
  1384.  
  1385.   /* On exit, make sure that there is a trailing null, and make sure that
  1386.      the last character of the returned string is *not* a slash.  */
  1387.  
  1388.   *outp = '\0';
  1389.   if (outp[-1] == '/')
  1390.     *--outp  = '\0';
  1391.  
  1392.   /* Make a copy (in the heap) of the stuff left in the absolutization
  1393.      buffer and return a pointer to the copy.  */
  1394.  
  1395.   return savestring (abs_buffer, outp - abs_buffer);
  1396. }
  1397.  
  1398. /* Given a filename (and possibly a directory name from which the filename
  1399.    is relative) return a string which is the shortest possible
  1400.    equivalent for the corresponding full (absolutized) filename.  The
  1401.    shortest possible equivalent may be constructed by converting the
  1402.    absolutized filename to be a relative filename (i.e. relative to
  1403.    the actual current working directory).  However if a relative filename
  1404.    is longer, then the full absolute filename is returned.
  1405.  
  1406.    KNOWN BUG:
  1407.  
  1408.    Note that "simple-minded" conversion of any given type of filename (either
  1409.    relative or absolute) may not result in a valid equivalent filename if any
  1410.    subpart of the original filename is actually a symbolic link.  */
  1411.  
  1412. static const char *
  1413. shortpath (cwd, filename)
  1414.      const char *cwd;
  1415.      const char *filename;
  1416. {
  1417.   char *rel_buffer;
  1418.   char *rel_buf_p;
  1419.   char *cwd_p = cwd_buffer;
  1420.   char *path_p;
  1421.   int unmatched_slash_count = 0;
  1422.   size_t filename_len = strlen (filename);
  1423.  
  1424.   path_p = abspath (cwd, filename);
  1425.   rel_buf_p = rel_buffer = (char *) xmalloc (filename_len);
  1426.  
  1427.   while (*cwd_p && (*cwd_p == *path_p))
  1428.     {
  1429.       cwd_p++;
  1430.       path_p++;
  1431.     }
  1432.   if (!*cwd_p && (!*path_p || *path_p == '/'))    /* whole pwd matched */
  1433.     {
  1434.       if (!*path_p)            /* input *is* the current path! */
  1435.         return ".";
  1436.       else
  1437.         return ++path_p;
  1438.     }
  1439.   else
  1440.     {
  1441.       if (*path_p)
  1442.         {
  1443.           --cwd_p;
  1444.           --path_p;
  1445.           while (*cwd_p != '/')            /* backup to last slash */
  1446.             {
  1447.               --cwd_p;
  1448.               --path_p;
  1449.             }
  1450.           cwd_p++;
  1451.           path_p++;
  1452.           unmatched_slash_count++;
  1453.         }
  1454.  
  1455.       /* Find out how many directory levels in cwd were *not* matched.  */
  1456.       while (*cwd_p)
  1457.         if (*cwd_p++ == '/')
  1458.       unmatched_slash_count++;
  1459.  
  1460.       /* Now we know how long the "short name" will be.
  1461.      Reject it if longer than the input.  */
  1462.       if (unmatched_slash_count * 3 + strlen (path_p) >= filename_len)
  1463.     return filename;
  1464.  
  1465.       /* For each of them, put a `../' at the beginning of the short name.  */
  1466.       while (unmatched_slash_count--)
  1467.         {
  1468.       /* Give up if the result gets to be longer
  1469.          than the absolute path name.  */
  1470.       if (rel_buffer + filename_len <= rel_buf_p + 3)
  1471.         return filename;
  1472.           *rel_buf_p++ = '.';
  1473.           *rel_buf_p++ = '.';
  1474.           *rel_buf_p++ = '/';
  1475.         }
  1476.  
  1477.       /* Then tack on the unmatched part of the desired file's name.  */
  1478.       do
  1479.     {
  1480.       if (rel_buffer + filename_len <= rel_buf_p)
  1481.         return filename;
  1482.     }
  1483.       while (*rel_buf_p++ = *path_p++);
  1484.  
  1485.       --rel_buf_p;
  1486.       if (*(rel_buf_p-1) == '/')
  1487.         *--rel_buf_p = '\0';
  1488.       return rel_buffer;
  1489.     }
  1490. }
  1491.  
  1492. /* Lookup the given filename in the hash table for filenames.  If it is a
  1493.    new one, then the hash table info pointer will be null.  In this case,
  1494.    we create a new file_info record to go with the filename, and we initialize
  1495.    that record with some reasonable values.  */
  1496.  
  1497. /* FILENAME was const, but that causes a warning on AIX when calling stat.
  1498.    That is probably a bug in AIX, but might as well avoid the warning.  */
  1499.  
  1500. static file_info *
  1501. find_file (filename, do_not_stat)
  1502.      char *filename;
  1503.      int do_not_stat;
  1504. {
  1505.   hash_table_entry *hash_entry_p;
  1506.  
  1507.   hash_entry_p = lookup (filename_primary, filename);
  1508.   if (hash_entry_p->fip)
  1509.     return hash_entry_p->fip;
  1510.   else
  1511.     {
  1512.       struct stat stat_buf;
  1513.       file_info *file_p = (file_info *) xmalloc (sizeof (file_info));
  1514.  
  1515.       /* If we cannot get status on any given source file, give a warning
  1516.          and then just set its time of last modification to infinity.  */
  1517.  
  1518.       if (do_not_stat)
  1519.         stat_buf.st_mtime = (time_t) 0;
  1520.       else
  1521.         {
  1522.           if (my_stat (filename, &stat_buf) == -1)
  1523.             {
  1524.               fprintf (stderr, "%s: %s: can't get status: %s\n",
  1525.                pname, shortpath (NULL, filename), my_strerror(errno));
  1526.               stat_buf.st_mtime = (time_t) -1;
  1527.             }
  1528.         }
  1529.  
  1530.       hash_entry_p->fip = file_p;
  1531.       file_p->hash_entry = hash_entry_p;
  1532.       file_p->defs_decs = NULL;
  1533.       file_p->mtime = stat_buf.st_mtime;
  1534.       return file_p;
  1535.     }
  1536. }
  1537.  
  1538. /* Generate a fatal error because some part of the aux_info file is
  1539.    messed up.  */
  1540.  
  1541. static void
  1542. aux_info_corrupted ()
  1543. {
  1544.   fprintf (stderr, "\n%s: fatal error: aux info file corrupted at line %d\n",
  1545.        pname, current_aux_info_lineno);
  1546.   exit (1);
  1547. }
  1548.  
  1549. /* ??? This comment is vague.  Say what the condition is for.  */
  1550. /* Check to see that a condition is true.  This is kind of like an assert.  */
  1551.  
  1552. static void
  1553. check_aux_info (cond)
  1554.      int cond;
  1555. {
  1556.   if (! cond)
  1557.     aux_info_corrupted ();
  1558. }
  1559.  
  1560. /* Given a pointer to the closing right parenthesis for a particular formals
  1561.    list (in an aux_info file) find the corresponding left parenthesis and
  1562.    return a pointer to it.  */
  1563.  
  1564. static const char *
  1565. find_corresponding_lparen (p)
  1566.      const char *p;
  1567. {
  1568.   const char *q;
  1569.   int paren_depth;
  1570.  
  1571.   for (paren_depth = 1, q = p-1; paren_depth; q--)
  1572.     {
  1573.       switch (*q)
  1574.         {
  1575.           case ')':
  1576.             paren_depth++;
  1577.             break;
  1578.           case '(':
  1579.             paren_depth--;
  1580.             break;
  1581.         }
  1582.     }
  1583.   return ++q;
  1584. }
  1585.  
  1586. /* Use this macro to advance a char * over the filename part in a line
  1587.    read from an aux-info file. */
  1588.  
  1589. #ifndef __amigados__
  1590. /* Version for file systems where the colon has no special meaning */
  1591. #define ADVANCE_PAST_FILENAME(CP) \
  1592.   while (* (CP) != ':') (CP)++
  1593. #else
  1594. /* Have to heuristically decide whether the colon is part of the filename
  1595.    or whether it serves to delimit the filename from the line number. If
  1596.    it's the latter case, then the character following the colon *must*
  1597.    be a digit. Note that this heuristic fails if the filename starts
  1598.    with a digit. */
  1599. #define ADVANCE_PAST_FILENAME(CP) \
  1600.     while ((CP)[0] != ':' || !isdigit ((CP)[1])) \
  1601.       (CP)++;
  1602. #endif
  1603.  
  1604.  
  1605. /* Given a line from  an aux info file, and a time at which the aux info
  1606.    file it came from was created, check to see if the item described in
  1607.    the line comes from a file which has been modified since the aux info
  1608.    file was created.  If so, return non-zero, else return zero.  */
  1609.  
  1610. static int
  1611. referenced_file_is_newer (l, aux_info_mtime)
  1612.      const char *l;
  1613.      time_t aux_info_mtime;
  1614. {
  1615.   const char *p;
  1616.   file_info *fi_p;
  1617.   char *filename;
  1618.  
  1619.   check_aux_info (l[0] == '/');
  1620.   check_aux_info (l[1] == '*');
  1621.   check_aux_info (l[2] == ' ');
  1622.  
  1623.   {
  1624.     const char *filename_start = p = l + 3;
  1625.  
  1626.     ADVANCE_PAST_FILENAME (p);
  1627.     filename = (char *) alloca ((size_t) (p - filename_start) + 1);
  1628.     strncpy (filename, filename_start, (size_t) (p - filename_start));
  1629.     filename[p-filename_start] = '\0';
  1630.   }
  1631.  
  1632.   /* Call find_file to find the file_info record associated with the file
  1633.      which contained this particular def or dec item.  Note that this call
  1634.      may cause a new file_info record to be created if this is the first time
  1635.      that we have ever known about this particular file.  */
  1636.  
  1637.   fi_p = find_file (abspath (invocation_filename, filename), 0);
  1638.  
  1639.   return (fi_p->mtime > aux_info_mtime);
  1640. }
  1641.  
  1642. /* Given a line of info from the aux_info file, create a new
  1643.    def_dec_info record to remember all of the important information about
  1644.    a function definition or declaration.
  1645.  
  1646.    Link this record onto the list of such records for the particular file in
  1647.    which it occurred in proper (descending) line number order (for now).
  1648.  
  1649.    If there is an identical record already on the list for the file, throw
  1650.    this one away.  Doing so takes care of the (useless and troublesome)
  1651.    duplicates which are bound to crop up due to multiple inclusions of any
  1652.    given individual header file.
  1653.  
  1654.    Finally, link the new def_dec record onto the list of such records
  1655.    pertaining to this particular function name.  */
  1656.  
  1657. static void
  1658. save_def_or_dec (l, is_syscalls)
  1659.      const char *l;
  1660.      int is_syscalls;
  1661. {
  1662.   const char *p;
  1663.   const char *semicolon_p;
  1664.   def_dec_info *def_dec_p = (def_dec_info *) xmalloc (sizeof (def_dec_info));
  1665.  
  1666. #ifndef UNPROTOIZE
  1667.   def_dec_p->written = 0;
  1668. #endif /* !defined (UNPROTOIZE) */
  1669.  
  1670.   /* Start processing the line by picking off 5 pieces of information from
  1671.      the left hand end of the line.  These are filename, line number,
  1672.      new/old/implicit flag (new = ANSI prototype format), definition or
  1673.      declaration flag, and extern/static flag).  */
  1674.  
  1675.   check_aux_info (l[0] == '/');
  1676.   check_aux_info (l[1] == '*');
  1677.   check_aux_info (l[2] == ' ');
  1678.  
  1679.   {
  1680.     const char *filename_start = p = l + 3;
  1681.     char *filename;
  1682.  
  1683.     ADVANCE_PAST_FILENAME (p);
  1684.     filename = (char *) alloca ((size_t) (p - filename_start) + 1);
  1685.     strncpy (filename, filename_start, (size_t) (p - filename_start));
  1686.     filename[p-filename_start] = '\0';
  1687.  
  1688.     /* Call find_file to find the file_info record associated with the file
  1689.        which contained this particular def or dec item.  Note that this call
  1690.        may cause a new file_info record to be created if this is the first time
  1691.        that we have ever known about this particular file.
  1692.   
  1693.        Note that we started out by forcing all of the base source file names
  1694.        (i.e. the names of the aux_info files with the .X stripped off) into the
  1695.        filenames hash table, and we simultaneously setup file_info records for
  1696.        all of these base file names (even if they may be useless later).
  1697.        The file_info records for all of these "base" file names (properly)
  1698.        act as file_info records for the "original" (i.e. un-included) files
  1699.        which were submitted to gcc for compilation (when the -aux-info
  1700.        option was used).  */
  1701.   
  1702.     def_dec_p->file = find_file (abspath (invocation_filename, filename), is_syscalls);
  1703.   }
  1704.  
  1705.   {
  1706.     const char *line_number_start = ++p;
  1707.     char line_number[10];
  1708.  
  1709.     while (*p != ':')
  1710.       p++;
  1711.     strncpy (line_number, line_number_start, (size_t) (p - line_number_start));
  1712.     line_number[p-line_number_start] = '\0';
  1713.     def_dec_p->line = atoi (line_number);
  1714.   }
  1715.  
  1716.   /* Check that this record describes a new-style, old-style, or implicit
  1717.      definition or declaration.  */
  1718.  
  1719.   p++;    /* Skip over the `:'. */
  1720.   check_aux_info ((*p == 'N') || (*p == 'O') || (*p == 'I'));
  1721.  
  1722.   /* Is this a new style (ANSI prototyped) definition or declaration? */
  1723.  
  1724.   def_dec_p->prototyped = (*p == 'N');
  1725.  
  1726. #ifndef UNPROTOIZE
  1727.  
  1728.   /* Is this an implicit declaration? */
  1729.  
  1730.   def_dec_p->is_implicit = (*p == 'I');
  1731.  
  1732. #endif /* !defined (UNPROTOIZE) */
  1733.  
  1734.   p++;
  1735.  
  1736.   check_aux_info ((*p == 'C') || (*p == 'F'));
  1737.  
  1738.   /* Is this item a function definition (F) or a declaration (C).  Note that
  1739.      we treat item taken from the syscalls file as though they were function
  1740.      definitions regardless of what the stuff in the file says.  */
  1741.  
  1742.   def_dec_p->is_func_def = ((*p++ == 'F') || is_syscalls);
  1743.  
  1744. #ifndef UNPROTOIZE
  1745.   def_dec_p->definition = 0;    /* Fill this in later if protoizing.  */
  1746. #endif /* !defined (UNPROTOIZE) */
  1747.  
  1748.   check_aux_info (*p++ == ' ');
  1749.   check_aux_info (*p++ == '*');
  1750.   check_aux_info (*p++ == '/');
  1751.   check_aux_info (*p++ == ' ');
  1752.  
  1753. #ifdef UNPROTOIZE
  1754.   check_aux_info ((!strncmp (p, "static", 6)) || (!strncmp (p, "extern", 6)));
  1755. #else /* !defined (UNPROTOIZE) */
  1756.   if (!strncmp (p, "static", 6))
  1757.     def_dec_p->is_static = -1;
  1758.   else if (!strncmp (p, "extern", 6))
  1759.     def_dec_p->is_static = 0;
  1760.   else
  1761.     check_aux_info (0);    /* Didn't find either `extern' or `static'.  */
  1762. #endif /* !defined (UNPROTOIZE) */
  1763.  
  1764.   {
  1765.     const char *ansi_start = p;
  1766.  
  1767.     p += 6;    /* Pass over the "static" or "extern".  */
  1768.  
  1769.     /* We are now past the initial stuff.  Search forward from here to find
  1770.        the terminating semicolon that should immediately follow the entire
  1771.        ANSI format function declaration.  */
  1772.  
  1773.     while (*++p != ';')
  1774.       continue;
  1775.  
  1776.     semicolon_p = p;
  1777.  
  1778.     /* Make a copy of the ansi declaration part of the line from the aux_info
  1779.        file.  */
  1780.  
  1781.     def_dec_p->ansi_decl
  1782.       = dupnstr (ansi_start, (size_t) ((semicolon_p+1) - ansi_start));
  1783.  
  1784.     /* Backup and point at the final right paren of the final argument list.  */
  1785.  
  1786.     p--;
  1787.  
  1788. #ifndef UNPROTOIZE
  1789.     def_dec_p->f_list_chain = NULL;
  1790. #endif /* !defined (UNPROTOIZE) */
  1791.  
  1792.     while (p != ansi_start && (p[-1] == ' ' || p[-1] == '\t')) p--;
  1793.     if (*p != ')')
  1794.       {
  1795.     free_def_dec (def_dec_p);
  1796.     return;
  1797.       }
  1798.   }
  1799.  
  1800.   /* Now isolate a whole set of formal argument lists, one-by-one.  Normally,
  1801.      there will only be one list to isolate, but there could be more.  */
  1802.  
  1803.   def_dec_p->f_list_count = 0;
  1804.  
  1805.   for (;;)
  1806.     {
  1807.       const char *left_paren_p = find_corresponding_lparen (p);
  1808. #ifndef UNPROTOIZE
  1809.       {
  1810.         f_list_chain_item *cip =
  1811.           (f_list_chain_item *) xmalloc (sizeof (f_list_chain_item));
  1812.  
  1813.         cip->formals_list
  1814.       = dupnstr (left_paren_p + 1, (size_t) (p - (left_paren_p+1)));
  1815.       
  1816.         /* Add the new chain item at the head of the current list.  */
  1817.  
  1818.         cip->chain_next = def_dec_p->f_list_chain;
  1819.         def_dec_p->f_list_chain = cip;
  1820.       }
  1821. #endif /* !defined (UNPROTOIZE) */
  1822.       def_dec_p->f_list_count++;
  1823.  
  1824.       p = left_paren_p - 2;
  1825.  
  1826.       /* p must now point either to another right paren, or to the last
  1827.          character of the name of the function that was declared/defined.
  1828.          If p points to another right paren, then this indicates that we
  1829.          are dealing with multiple formals lists.  In that case, there
  1830.          really should be another right paren preceding this right paren.  */
  1831.  
  1832.       if (*p != ')')
  1833.         break;
  1834.       else
  1835.         check_aux_info (*--p == ')');
  1836.     }
  1837.  
  1838.  
  1839.   {
  1840.     const char *past_fn = p + 1;
  1841.  
  1842.     check_aux_info (*past_fn == ' ');
  1843.  
  1844.     /* Scan leftwards over the identifier that names the function.  */
  1845.  
  1846.     while (is_id_char (*p))
  1847.       p--;
  1848.     p++;
  1849.  
  1850.     /* p now points to the leftmost character of the function name.  */
  1851.  
  1852.     {
  1853.       char *fn_string = (char *) alloca (past_fn - p + 1);
  1854.  
  1855.       strncpy (fn_string, p, (size_t) (past_fn - p));
  1856.       fn_string[past_fn-p] = '\0';
  1857.       def_dec_p->hash_entry = lookup (function_name_primary, fn_string);
  1858.     }
  1859.   }
  1860.  
  1861.   /* Look at all of the defs and decs for this function name that we have
  1862.      collected so far.  If there is already one which is at the same
  1863.      line number in the same file, then we can discard this new def_dec_info
  1864.      record.
  1865.  
  1866.      As an extra assurance that any such pair of (nominally) identical
  1867.      function declarations are in fact identical, we also compare the
  1868.      ansi_decl parts of the lines from the aux_info files just to be on
  1869.      the safe side.
  1870.  
  1871.      This comparison will fail if (for instance) the user was playing
  1872.      messy games with the preprocessor which ultimately causes one
  1873.      function declaration in one header file to look differently when
  1874.      that file is included by two (or more) other files.  */
  1875.  
  1876.   {
  1877.     const def_dec_info *other;
  1878.  
  1879.     for (other = def_dec_p->hash_entry->ddip; other; other = other->next_for_func)
  1880.       {
  1881.         if (def_dec_p->line == other->line && def_dec_p->file == other->file)
  1882.           {
  1883.             if (strcmp (def_dec_p->ansi_decl, other->ansi_decl))
  1884.               {
  1885.                 fprintf (stderr, "%s:%d: declaration of function `%s' takes different forms\n",
  1886.              def_dec_p->file->hash_entry->symbol,
  1887.              def_dec_p->line,
  1888.              def_dec_p->hash_entry->symbol);
  1889.                 exit (1);
  1890.               }
  1891.             free_def_dec (def_dec_p);
  1892.             return;
  1893.           }
  1894.       }
  1895.   }
  1896.  
  1897. #ifdef UNPROTOIZE
  1898.  
  1899.   /* If we are doing unprotoizing, we must now setup the pointers that will
  1900.      point to the K&R name list and to the K&R argument declarations list.
  1901.  
  1902.      Note that if this is only a function declaration, then we should not
  1903.      expect to find any K&R style formals list following the ANSI-style
  1904.      formals list.  This is because GCC knows that such information is
  1905.      useless in the case of function declarations (function definitions
  1906.      are a different story however).
  1907.  
  1908.      Since we are unprotoizing, we don't need any such lists anyway.
  1909.      All we plan to do is to delete all characters between ()'s in any
  1910.      case.  */
  1911.  
  1912.   def_dec_p->formal_names = NULL;
  1913.   def_dec_p->formal_decls = NULL;
  1914.  
  1915.   if (def_dec_p->is_func_def)
  1916.     {
  1917.       p = semicolon_p;
  1918.       check_aux_info (*++p == ' ');
  1919.       check_aux_info (*++p == '/');
  1920.       check_aux_info (*++p == '*');
  1921.       check_aux_info (*++p == ' ');
  1922.       check_aux_info (*++p == '(');
  1923.  
  1924.       {
  1925.         const char *kr_names_start = ++p;   /* Point just inside '('. */
  1926.  
  1927.         while (*p++ != ')')
  1928.           continue;
  1929.         p--;        /* point to closing right paren */
  1930.  
  1931.         /* Make a copy of the K&R parameter names list.  */
  1932.  
  1933.         def_dec_p->formal_names
  1934.       = dupnstr (kr_names_start, (size_t) (p - kr_names_start));
  1935.       }
  1936.  
  1937.       check_aux_info (*++p == ' ');
  1938.       p++;
  1939.  
  1940.       /* p now points to the first character of the K&R style declarations
  1941.          list (if there is one) or to the star-slash combination that ends
  1942.          the comment in which such lists get embedded.  */
  1943.  
  1944.       /* Make a copy of the K&R formal decls list and set the def_dec record
  1945.          to point to it.  */
  1946.  
  1947.       if (*p == '*')        /* Are there no K&R declarations? */
  1948.         {
  1949.           check_aux_info (*++p == '/');
  1950.           def_dec_p->formal_decls = "";
  1951.         }
  1952.       else
  1953.         {
  1954.           const char *kr_decls_start = p;
  1955.  
  1956.           while (p[0] != '*' || p[1] != '/')
  1957.             p++;
  1958.           p--;
  1959.  
  1960.           check_aux_info (*p == ' ');
  1961.  
  1962.           def_dec_p->formal_decls
  1963.         = dupnstr (kr_decls_start, (size_t) (p - kr_decls_start));
  1964.         }
  1965.  
  1966.       /* Handle a special case.  If we have a function definition marked as
  1967.          being in "old" style, and if it's formal names list is empty, then
  1968.          it may actually have the string "void" in its real formals list
  1969.          in the original source code.  Just to make sure, we will get setup
  1970.          to convert such things anyway.
  1971.  
  1972.          This kludge only needs to be here because of an insurmountable
  1973.          problem with generating .X files.  */
  1974.  
  1975.       if (!def_dec_p->prototyped && !*def_dec_p->formal_names)
  1976.         def_dec_p->prototyped = 1;
  1977.     }
  1978.  
  1979.   /* Since we are unprotoizing, if this item is already in old (K&R) style,
  1980.      we can just ignore it.  If that is true, throw away the itme now.  */
  1981.  
  1982.   if (!def_dec_p->prototyped)
  1983.     {
  1984.       free_def_dec (def_dec_p);
  1985.       return;
  1986.     }
  1987.  
  1988. #endif /* defined (UNPROTOIZE) */
  1989.  
  1990.   /* Add this record to the head of the list of records pertaining to this
  1991.      particular function name.  */
  1992.  
  1993.   def_dec_p->next_for_func = def_dec_p->hash_entry->ddip;
  1994.   def_dec_p->hash_entry->ddip = def_dec_p;
  1995.  
  1996.   /* Add this new def_dec_info record to the sorted list of def_dec_info
  1997.      records for this file.  Note that we don't have to worry about duplicates
  1998.      (caused by multiple inclusions of header files) here because we have
  1999.      already eliminated duplicates above.  */
  2000.  
  2001.   if (!def_dec_p->file->defs_decs)
  2002.     {
  2003.       def_dec_p->file->defs_decs = def_dec_p;
  2004.       def_dec_p->next_in_file = NULL;
  2005.     }
  2006.   else
  2007.     {
  2008.       int line = def_dec_p->line;
  2009.       const def_dec_info *prev = NULL;
  2010.       const def_dec_info *curr = def_dec_p->file->defs_decs;
  2011.       const def_dec_info *next = curr->next_in_file;
  2012.  
  2013.       while (next && (line < curr->line))
  2014.         {
  2015.           prev = curr;
  2016.           curr = next;
  2017.           next = next->next_in_file;
  2018.         }
  2019.       if (line >= curr->line)
  2020.         {
  2021.           def_dec_p->next_in_file = curr;
  2022.           if (prev)
  2023.             ((NONCONST def_dec_info *) prev)->next_in_file = def_dec_p;
  2024.           else
  2025.             def_dec_p->file->defs_decs = def_dec_p;
  2026.         }
  2027.       else    /* assert (next == NULL); */
  2028.         {
  2029.           ((NONCONST def_dec_info *) curr)->next_in_file = def_dec_p;
  2030.           /* assert (next == NULL); */
  2031.           def_dec_p->next_in_file = next;
  2032.         }
  2033.     }
  2034. }
  2035.  
  2036. /* Set up the vector COMPILE_PARAMS which is the argument list for running GCC.
  2037.    Also set input_file_name_index and aux_info_file_name_index
  2038.    to the indices of the slots where the file names should go.  */
  2039.  
  2040. /* We initialize the vector by  removing -g, -O, -S, -c, and -o options,
  2041.    and adding '-aux-info AUXFILE -S  -o /dev/null INFILE' at the end.  */
  2042.  
  2043. static void
  2044. munge_compile_params (params_list)
  2045.      const char *params_list;
  2046. {
  2047.   /* Build up the contents in a temporary vector
  2048.      that is so big that to has to be big enough.  */
  2049.   const char **temp_params
  2050.     = (const char **) alloca ((strlen (params_list) + 8) * sizeof (char *));
  2051.   int param_count = 0;
  2052.   const char *param;
  2053.  
  2054.   temp_params[param_count++] = compiler_file_name;
  2055.   for (;;)
  2056.     {
  2057.       while (isspace (*params_list))
  2058.         params_list++;
  2059.       if (!*params_list)
  2060.         break;
  2061.       param = params_list;
  2062.       while (*params_list && !isspace (*params_list))
  2063.         params_list++;
  2064.       if (param[0] != '-')
  2065.         temp_params[param_count++]
  2066.       = dupnstr (param, (size_t) (params_list - param));
  2067.       else
  2068.         {
  2069.           switch (param[1])
  2070.             {
  2071.               case 'g':
  2072.               case 'O':
  2073.               case 'S':
  2074.               case 'c':
  2075.                 break;        /* Don't copy these.  */
  2076.               case 'o':
  2077.                 while (isspace (*params_list))
  2078.                   params_list++;
  2079.                 while (*params_list && !isspace (*params_list))
  2080.                   params_list++;
  2081.                 break;
  2082.               default:
  2083.                 temp_params[param_count++]
  2084.           = dupnstr (param, (size_t) (params_list - param));
  2085.             }
  2086.         }
  2087.       if (!*params_list)
  2088.         break;
  2089.     }
  2090.   temp_params[param_count++] = "-aux-info";
  2091.  
  2092.   /* Leave room for the aux-info file name argument.  */
  2093.   aux_info_file_name_index = param_count;
  2094.   temp_params[param_count++] = NULL;
  2095.  
  2096.   temp_params[param_count++] = "-S";
  2097.   temp_params[param_count++] = "-o";
  2098.   temp_params[param_count++] = "/dev/null";
  2099.  
  2100.   /* Leave room for the input file name argument.  */
  2101.   input_file_name_index = param_count;
  2102.   temp_params[param_count++] = NULL;
  2103.   /* Terminate the list.  */
  2104.   temp_params[param_count++] = NULL;
  2105.  
  2106.   /* Make a copy of the compile_params in heap space.  */
  2107.  
  2108.   compile_params
  2109.     = (const char **) xmalloc (sizeof (char *) * (param_count+1));
  2110.   memcpy (compile_params, temp_params, sizeof (char *) * param_count);
  2111. }
  2112.  
  2113. /* Do a recompilation for the express purpose of generating a new aux_info
  2114.    file to go with a specific base source file.  */
  2115.  
  2116. static int
  2117. gen_aux_info_file (base_filename)
  2118.      const char *base_filename;
  2119. {
  2120.   int child_pid;
  2121.  
  2122.   if (!input_file_name_index)
  2123.     munge_compile_params ("");
  2124.  
  2125.   /* Store the full source file name in the argument vector.  */
  2126.   compile_params[input_file_name_index] = shortpath (NULL, base_filename);
  2127.   /* Add .X to source file name to get aux-info file name.  */
  2128.   compile_params[aux_info_file_name_index]
  2129.     = savestring2 (compile_params[input_file_name_index],
  2130.                strlen (compile_params[input_file_name_index]),
  2131.            ".X",
  2132.            2);
  2133.  
  2134.   if (!quiet_flag)
  2135.     fprintf (stderr, "%s: compiling `%s'\n",
  2136.          pname, compile_params[input_file_name_index]);
  2137.  
  2138.   if (child_pid = fork ())
  2139.     {
  2140.       if (child_pid == -1)
  2141.         {
  2142.           fprintf (stderr, "%s: could not fork process: %s\n",
  2143.            pname, my_strerror(errno));
  2144.           return 0;
  2145.         }
  2146.  
  2147. #if 0
  2148.       /* Print out the command line that the other process is now executing.  */
  2149.  
  2150.       if (!quiet_flag)
  2151.         {
  2152.           const char **arg;
  2153.   
  2154.           fputs ("\t", stderr);
  2155.           for (arg = compile_params; *arg; arg++)
  2156.             {
  2157.               fputs (*arg, stderr);
  2158.               fputc (' ', stderr);
  2159.             }
  2160.           fputc ('\n', stderr);
  2161.           fflush (stderr);
  2162.         }
  2163. #endif /* 0 */
  2164.  
  2165.       {
  2166.         int wait_status;
  2167.  
  2168.         if (wait (&wait_status) == -1)
  2169.           {
  2170.             fprintf (stderr, "%s: wait failed: %s\n",
  2171.              pname, my_strerror(errno));
  2172.             return 0;
  2173.           }
  2174.     if (WIFSIGNALED (wait_status))
  2175.       {
  2176.         fprintf (stderr, "%s: subprocess got fatal signal %d",
  2177.              pname, WTERMSIG (wait_status));
  2178.         return 0;
  2179.       }
  2180.     if (WIFEXITED (wait_status) && WEXITSTATUS (wait_status) != 0)
  2181.       {
  2182.         fprintf (stderr, "%s: %s exited with status %d\n",
  2183.              pname, base_filename, WEXITSTATUS (wait_status));
  2184.         return 0;
  2185.       }
  2186.     return 1;
  2187.       }
  2188.     }
  2189.   else
  2190.     {
  2191.       if (my_execvp (compile_params[0], (char *const *) compile_params))
  2192.         {
  2193.       int e = errno, f = fileno (stderr);
  2194.       write (f, pname, strlen (pname));
  2195.       write (f, ": ", 2);
  2196.       write (f, compile_params[0], strlen (compile_params[0]));
  2197.       write (f, ": ", 2);
  2198. #ifdef HAVE_STRERROR
  2199.       {
  2200.         char *p = strerror(e);
  2201.         write (f, p, strlen (p));
  2202.       }
  2203. #else
  2204.       write (f, sys_errlist[e], strlen (sys_errlist[e]));
  2205. #endif
  2206.       write (f, "\n", 1);
  2207.           _exit (1);
  2208.         }
  2209.       return 1;        /* Never executed.  */
  2210.     }
  2211. }
  2212.  
  2213. /* Read in all of the information contained in a single aux_info file.
  2214.    Save all of the important stuff for later.  */
  2215.  
  2216. static void
  2217. process_aux_info_file (base_source_filename, keep_it, is_syscalls)
  2218.      const char *base_source_filename;
  2219.      int keep_it;
  2220.      int is_syscalls;
  2221. {
  2222.   size_t base_len = strlen (base_source_filename);
  2223.   char * aux_info_filename
  2224.     = (char *) alloca (base_len + strlen (aux_info_suffix) + 1);
  2225.   char *aux_info_base;
  2226.   char *aux_info_limit;
  2227.   char *aux_info_relocated_name;
  2228.   const char *aux_info_second_line;
  2229.   time_t aux_info_mtime;
  2230.   size_t aux_info_size;
  2231.   int must_create;
  2232.  
  2233.   /* Construct the aux_info filename from the base source filename.  */
  2234.  
  2235.   strcpy (aux_info_filename, base_source_filename);
  2236.   strcat (aux_info_filename, aux_info_suffix);
  2237.  
  2238.   /* Check that the aux_info file exists and is readable.  If it does not
  2239.      exist, try to create it (once only).  */
  2240.  
  2241.   /* If file doesn't exist, set must_create.
  2242.      Likewise if it exists and we can read it but it is obsolete.
  2243.      Otherwise, report an error.  */
  2244.   must_create = 0;
  2245.  
  2246.   /* Come here with must_create set to 1 if file is out of date.  */
  2247. start_over: ;
  2248.  
  2249.   if (my_access (aux_info_filename, R_OK) == -1)
  2250.     {
  2251.       if (errno == ENOENT)
  2252.     {
  2253.       if (is_syscalls)
  2254.         {
  2255.           fprintf (stderr, "%s: warning: missing SYSCALLS file `%s'\n",
  2256.                pname, aux_info_filename);
  2257.           return;
  2258.         }
  2259.       must_create = 1;
  2260.     }
  2261.       else
  2262.     {
  2263.       fprintf (stderr, "%s: can't read aux info file `%s': %s\n",
  2264.            pname, shortpath (NULL, aux_info_filename),
  2265.            my_strerror(errno));
  2266.       errors++;
  2267.       return;
  2268.     }
  2269.     }
  2270. #if 0 /* There is code farther down to take care of this.  */
  2271.   else
  2272.     {
  2273.       struct stat s1, s2;
  2274.       stat (aux_info_file_name, &s1);
  2275.       stat (base_source_file_name, &s2);
  2276.       if (s2.st_mtime > s1.st_mtime)
  2277.     must_create = 1;
  2278.     }
  2279. #endif /* 0 */
  2280.  
  2281.   /* If we need a .X file, create it, and verify we can read it.  */
  2282.   if (must_create)
  2283.     {
  2284.       if (!gen_aux_info_file (base_source_filename))
  2285.     {
  2286.       errors++;
  2287.       return;
  2288.     }
  2289.       if (my_access (aux_info_filename, R_OK) == -1)
  2290.     {
  2291.       fprintf (stderr, "%s: can't read aux info file `%s': %s\n",
  2292.            pname, shortpath (NULL, aux_info_filename),
  2293.            my_strerror(errno));
  2294.       errors++;
  2295.       return;
  2296.     }
  2297.     }
  2298.  
  2299.   {
  2300.     struct stat stat_buf;
  2301.  
  2302.     /* Get some status information about this aux_info file.  */
  2303.   
  2304.     if (my_stat (aux_info_filename, &stat_buf) == -1)
  2305.       {
  2306.         fprintf (stderr, "%s: can't get status of aux info file `%s': %s\n",
  2307.          pname, shortpath (NULL, aux_info_filename),
  2308.          my_strerror(errno));
  2309.         errors++;
  2310.         return;
  2311.       }
  2312.   
  2313.     /* Check on whether or not this aux_info file is zero length.  If it is,
  2314.        then just ignore it and return.  */
  2315.   
  2316.     if ((aux_info_size = stat_buf.st_size) == 0)
  2317.       return;
  2318.   
  2319.     /* Get the date/time of last modification for this aux_info file and
  2320.        remember it.  We will have to check that any source files that it
  2321.        contains information about are at least this old or older.  */
  2322.   
  2323.     aux_info_mtime = stat_buf.st_mtime;
  2324.  
  2325.     if (!is_syscalls)
  2326.       {
  2327.     /* Compare mod time with the .c file; update .X file if obsolete.
  2328.        The code later on can fail to check the .c file
  2329.        if it did not directly define any functions.  */
  2330.  
  2331.     if (my_stat (base_source_filename, &stat_buf) == -1)
  2332.       {
  2333.         fprintf (stderr, "%s: can't get status of aux info file `%s': %s\n",
  2334.              pname, shortpath (NULL, base_source_filename),
  2335.              my_strerror(errno));
  2336.         errors++;
  2337.         return;
  2338.       }
  2339.     if (stat_buf.st_mtime > aux_info_mtime)
  2340.       {
  2341.         must_create = 1;
  2342.         goto start_over;
  2343.       }
  2344.       }
  2345.   }
  2346.  
  2347.   {
  2348.     int aux_info_file;
  2349.  
  2350.     /* Open the aux_info file.  */
  2351.   
  2352.     if ((aux_info_file = my_open (aux_info_filename, O_RDONLY, 0444 )) == -1)
  2353.       {
  2354.         fprintf (stderr, "%s: can't open aux info file `%s' for reading: %s\n",
  2355.          pname, shortpath (NULL, aux_info_filename),
  2356.          my_strerror(errno));
  2357.         return;
  2358.       }
  2359.   
  2360.     /* Allocate space to hold the aux_info file in memory.  */
  2361.   
  2362.     aux_info_base = xmalloc (aux_info_size + 1);
  2363.     aux_info_limit = aux_info_base + aux_info_size;
  2364.     *aux_info_limit = '\0';
  2365.   
  2366.     /* Read the aux_info file into memory.  */
  2367.   
  2368.     if (safe_read (aux_info_file, aux_info_base, aux_info_size) != aux_info_size)
  2369.       {
  2370.         fprintf (stderr, "%s: error reading aux info file `%s': %s\n",
  2371.          pname, shortpath (NULL, aux_info_filename),
  2372.          my_strerror(errno));
  2373.         free (aux_info_base);
  2374.         close (aux_info_file);
  2375.         return;
  2376.       }
  2377.   
  2378.     /* Close the aux info file.  */
  2379.   
  2380.     if (close (aux_info_file))
  2381.       {
  2382.         fprintf (stderr, "%s: error closing aux info file `%s': %s\n",
  2383.          pname, shortpath (NULL, aux_info_filename),
  2384.          my_strerror(errno));
  2385.         free (aux_info_base);
  2386.         close (aux_info_file);
  2387.         return;
  2388.       }
  2389.   }
  2390.  
  2391.   /* Delete the aux_info file (unless requested not to).  If the deletion
  2392.      fails for some reason, don't even worry about it.  */
  2393.  
  2394.   if (must_create && !keep_it)
  2395.     if (my_unlink (aux_info_filename) == -1)
  2396.       fprintf (stderr, "%s: can't delete aux info file `%s': %s\n",
  2397.            pname, shortpath (NULL, aux_info_filename),
  2398.            my_strerror(errno));
  2399.  
  2400.   /* Save a pointer into the first line of the aux_info file which
  2401.      contains the filename of the directory from which the compiler
  2402.      was invoked when the associated source file was compiled.
  2403.      This information is used later to help create complete
  2404.      filenames out of the (potentially) relative filenames in
  2405.      the aux_info file.  */
  2406.  
  2407.   {
  2408.     char *p = aux_info_base;
  2409.  
  2410.     /* have to make sure at least one space is following the colon to make
  2411.        sure the colon is not part of the filename */
  2412.     while (*p != ':' && p[1] != ' ')
  2413.       p++;
  2414.     p++;
  2415.     while (*p == ' ')
  2416.       p++;
  2417.     invocation_filename = p;    /* Save a pointer to first byte of path.  */
  2418.     while (*p != ' ')
  2419.       p++;
  2420.     *p++ = '/';
  2421.     *p++ = '\0';
  2422.     while (*p++ != '\n')
  2423.       continue;
  2424.     aux_info_second_line = p;
  2425.     aux_info_relocated_name = 0;
  2426. #ifdef FILE_NAME_ABSOLUTE_P
  2427.     if (! FILE_NAME_ABSOLUTE_P (invocation_filename))
  2428. #else
  2429.       if (invocation_filename[0] != '/')
  2430. #endif
  2431.       {
  2432.     /* INVOCATION_FILENAME is relative;
  2433.        append it to BASE_SOURCE_FILENAME's dir.  */
  2434.     char *dir_end;
  2435.     aux_info_relocated_name = xmalloc (base_len + (p-invocation_filename));
  2436.     strcpy (aux_info_relocated_name, base_source_filename);
  2437.     dir_end = rindex (aux_info_relocated_name, '/');
  2438.     if (dir_end)
  2439.       dir_end++;
  2440.     else
  2441.       dir_end = aux_info_relocated_name;
  2442.     strcpy (dir_end, invocation_filename);
  2443.     invocation_filename = aux_info_relocated_name;
  2444.       }
  2445.   }
  2446.  
  2447.  
  2448.   {
  2449.     const char *aux_info_p;
  2450.  
  2451.     /* Do a pre-pass on the lines in the aux_info file, making sure that all
  2452.        of the source files referenced in there are at least as old as this
  2453.        aux_info file itself.  If not, go back and regenerate the aux_info
  2454.        file anew.  Don't do any of this for the syscalls file.  */
  2455.  
  2456.     if (!is_syscalls)
  2457.       {
  2458.         current_aux_info_lineno = 2;
  2459.     
  2460.         for (aux_info_p = aux_info_second_line; *aux_info_p; )
  2461.           {
  2462.             if (referenced_file_is_newer (aux_info_p, aux_info_mtime))
  2463.               {
  2464.                 free (aux_info_base);
  2465.         xfree (aux_info_relocated_name);
  2466.                 if (keep_it && my_unlink (aux_info_filename) == -1)
  2467.                   {
  2468.                     fprintf (stderr, "%s: can't delete file `%s': %s\n",
  2469.                  pname, shortpath (NULL, aux_info_filename),
  2470.                  my_strerror(errno));
  2471.                     return;
  2472.                   }
  2473.         must_create = 1;
  2474.                 goto start_over;
  2475.               }
  2476.     
  2477.             /* Skip over the rest of this line to start of next line.  */
  2478.     
  2479.             while (*aux_info_p != '\n')
  2480.               aux_info_p++;
  2481.             aux_info_p++;
  2482.             current_aux_info_lineno++;
  2483.           }
  2484.       }
  2485.  
  2486.     /* Now do the real pass on the aux_info lines.  Save their information in
  2487.        the in-core data base.  */
  2488.   
  2489.     current_aux_info_lineno = 2;
  2490.   
  2491.     for (aux_info_p = aux_info_second_line; *aux_info_p;)
  2492.       {
  2493.         char *unexpanded_line = unexpand_if_needed (aux_info_p);
  2494.   
  2495.         if (unexpanded_line)
  2496.           {
  2497.             save_def_or_dec (unexpanded_line, is_syscalls);
  2498.             free (unexpanded_line);
  2499.           }
  2500.         else
  2501.           save_def_or_dec (aux_info_p, is_syscalls);
  2502.   
  2503.         /* Skip over the rest of this line and get to start of next line.  */
  2504.   
  2505.         while (*aux_info_p != '\n')
  2506.           aux_info_p++;
  2507.         aux_info_p++;
  2508.         current_aux_info_lineno++;
  2509.       }
  2510.   }
  2511.  
  2512.   free (aux_info_base);
  2513.   xfree (aux_info_relocated_name);
  2514. }
  2515.  
  2516. #ifndef UNPROTOIZE
  2517.  
  2518. /* Check an individual filename for a .c suffix.  If the filename has this
  2519.    suffix, rename the file such that its suffix is changed to .cc.  This
  2520.    function implements the -C option.  */
  2521.  
  2522. static void
  2523. rename_c_file (hp)
  2524.      const hash_table_entry *hp;
  2525. {
  2526.   const char *filename = hp->symbol;
  2527.   int last_char_index = strlen (filename) - 1;
  2528.   char *const new_filename = (char *) alloca (strlen (filename) + 2);
  2529.  
  2530.   /* Note that we don't care here if the given file was converted or not.  It
  2531.      is possible that the given file was *not* converted, simply because there
  2532.      was nothing in it which actually required conversion.  Even in this case,
  2533.      we want to do the renaming.  Note that we only rename files with the .c
  2534.      suffix.  */
  2535.  
  2536.   if (filename[last_char_index] != 'c' || filename[last_char_index-1] != '.')
  2537.     return;
  2538.  
  2539.   strcpy (new_filename, filename);
  2540.   strcat (new_filename + last_char_index, "cc");
  2541.   
  2542.   /* use rename(2) if available !! Update config files to include HAVE_rename
  2543.      if the used OS provides it. Advantages are: it's atomic, it's one
  2544.      system call compared to two. */
  2545.  
  2546. #ifdef HAVE_rename
  2547.   /* if the mentioned systems (POSIX 1003.1-1988) have rename(2), this has
  2548.      to be changed to `my_rename' as well. */
  2549.  
  2550.   if (rename (filename, new_filename) == -1)
  2551.     {
  2552.       fprintf (stderr, "%s: warning: can't rename file `%s' to `%s': %s\n",
  2553.            pname, shortpath (NULL, filename),
  2554.            shortpath (NULL, new_filename), my_strerror(errno));
  2555.       errors++;
  2556.       return;
  2557.     }
  2558. #else
  2559.   if (my_link (filename, new_filename) == -1)
  2560.     {
  2561.       fprintf (stderr, "%s: warning: can't link file `%s' to `%s': %s\n",
  2562.            pname, shortpath (NULL, filename),
  2563.            shortpath (NULL, new_filename), my_strerror(errno));
  2564.       errors++;
  2565.       return;
  2566.     }
  2567.  
  2568.   if (my_unlink (filename) == -1)
  2569.     {
  2570.       fprintf (stderr, "%s: warning: can't delete file `%s': %s\n",
  2571.            pname, shortpath (NULL, filename), my_strerror(errno));
  2572.       errors++;
  2573.       return;
  2574.     }
  2575. #endif
  2576. }
  2577.  
  2578. #endif /* !defined (UNPROTOIZE) */
  2579.  
  2580. /* Take the list of definitions and declarations attached to a particular
  2581.    file_info node and reverse the order of the list.  This should get the
  2582.    list into an order such that the item with the lowest associated line
  2583.    number is nearest the head of the list.  When these lists are originally
  2584.    built, they are in the opposite order.  We want to traverse them in
  2585.    normal line number order later (i.e. lowest to highest) so reverse the
  2586.    order here.  */
  2587.  
  2588. static void
  2589. reverse_def_dec_list (hp)
  2590.      const hash_table_entry *hp;
  2591. {
  2592.   file_info *file_p = hp->fip;
  2593.   const def_dec_info *prev = NULL;
  2594.   const def_dec_info *current = file_p->defs_decs;
  2595.  
  2596.   if (!( current = file_p->defs_decs))
  2597.     return;                /* no list to reverse */
  2598.  
  2599.   prev = current;
  2600.   if (! (current = current->next_in_file))
  2601.     return;                /* can't reverse a single list element */
  2602.  
  2603.   ((NONCONST def_dec_info *) prev)->next_in_file = NULL;
  2604.  
  2605.   while (current)
  2606.     {
  2607.       const def_dec_info *next = current->next_in_file;
  2608.  
  2609.       ((NONCONST def_dec_info *) current)->next_in_file = prev;
  2610.       prev = current;
  2611.       current = next;
  2612.     }
  2613.  
  2614.   file_p->defs_decs = prev;
  2615. }
  2616.  
  2617. #ifndef UNPROTOIZE
  2618.  
  2619. /* Find the (only?) extern definition for a particular function name, starting
  2620.    from the head of the linked list of entries for the given name.  If we
  2621.    cannot find an extern definition for the given function name, issue a
  2622.    warning and scrounge around for the next best thing, i.e. an extern
  2623.    function declaration with a prototype attached to it.  Note that we only
  2624.    allow such substitutions for extern declarations and never for static
  2625.    declarations.  That's because the only reason we allow them at all is
  2626.    to let un-prototyped function declarations for system-supplied library
  2627.    functions get their prototypes from our own extra SYSCALLS.c.X file which
  2628.    contains all of the correct prototypes for system functions.  */
  2629.  
  2630. static const def_dec_info *
  2631. find_extern_def (head, user)
  2632.      const def_dec_info *head;
  2633.      const def_dec_info *user;
  2634. {
  2635.   const def_dec_info *dd_p;
  2636.   const def_dec_info *extern_def_p = NULL;
  2637.   int conflict_noted = 0;
  2638.  
  2639.   /* Don't act too stupid here.  Somebody may try to convert an entire system
  2640.      in one swell fwoop (rather than one program at a time, as should be done)
  2641.      and in that case, we may find that there are multiple extern definitions
  2642.      of a given function name in the entire set of source files that we are
  2643.      converting.  If however one of these definitions resides in exactly the
  2644.      same source file as the reference we are trying to satisfy then in that
  2645.      case it would be stupid for us to fail to realize that this one definition
  2646.      *must* be the precise one we are looking for.
  2647.  
  2648.      To make sure that we don't miss an opportunity to make this "same file"
  2649.      leap of faith, we do a prescan of the list of records relating to the
  2650.      given function name, and we look (on this first scan) *only* for a
  2651.      definition of the function which is in the same file as the reference
  2652.      we are currently trying to satisfy.  */
  2653.  
  2654.   for (dd_p = head; dd_p; dd_p = dd_p->next_for_func)
  2655.     if (dd_p->is_func_def && !dd_p->is_static && dd_p->file == user->file)
  2656.       return dd_p;
  2657.  
  2658.   /* Now, since we have not found a definition in the same file as the
  2659.      reference, we scan the list again and consider all possibilities from
  2660.      all files.  Here we may get conflicts with the things listed in the
  2661.      SYSCALLS.c.X file, but if that happens it only means that the source
  2662.      code being converted contains its own definition of a function which
  2663.      could have been supplied by libc.a.  In such cases, we should avoid
  2664.      issuing the normal warning, and defer to the definition given in the
  2665.      user's own code.   */
  2666.  
  2667.   for (dd_p = head; dd_p; dd_p = dd_p->next_for_func)
  2668.     if (dd_p->is_func_def && !dd_p->is_static)
  2669.       {
  2670.         if (!extern_def_p)    /* Previous definition? */
  2671.           extern_def_p = dd_p;    /* Remember the first definition found. */
  2672.         else
  2673.           {
  2674.             /* Ignore definition just found if it came from SYSCALLS.c.X.  */
  2675.  
  2676.             if (is_syscalls_file (dd_p->file))
  2677.               continue;
  2678.  
  2679.             /* Quietly replace the definition previously found with the one
  2680.                just found if the previous one was from SYSCALLS.c.X.  */
  2681.  
  2682.             if (is_syscalls_file (extern_def_p->file))
  2683.               {
  2684.                 extern_def_p = dd_p;
  2685.                 continue;
  2686.               }
  2687.  
  2688.             /* If we get here, then there is a conflict between two function
  2689.                declarations for the same function, both of which came from the
  2690.                user's own code.  */
  2691.  
  2692.             if (!conflict_noted)    /* first time we noticed? */
  2693.               {
  2694.                 conflict_noted = 1;
  2695.                 fprintf (stderr, "%s: conflicting extern definitions of '%s'\n",
  2696.              pname, head->hash_entry->symbol);
  2697.                 if (!quiet_flag)
  2698.                   {
  2699.                     fprintf (stderr, "%s: declarations of '%s' will not be converted\n",
  2700.                  pname, head->hash_entry->symbol);
  2701.                     fprintf (stderr, "%s: conflict list for '%s' follows:\n",
  2702.                  pname, head->hash_entry->symbol);
  2703.                     fprintf (stderr, "%s:     %s(%d): %s\n",
  2704.                  pname,
  2705.                  shortpath (NULL, extern_def_p->file->hash_entry->symbol),
  2706.                  extern_def_p->line, extern_def_p->ansi_decl);
  2707.                   }
  2708.               }
  2709.             if (!quiet_flag)
  2710.               fprintf (stderr, "%s:     %s(%d): %s\n",
  2711.                pname,
  2712.                shortpath (NULL, dd_p->file->hash_entry->symbol),
  2713.                dd_p->line, dd_p->ansi_decl);
  2714.           }
  2715.       }
  2716.  
  2717.   /* We want to err on the side of caution, so if we found multiple conflicting
  2718.      definitions for the same function, treat this as being that same as if we
  2719.      had found no definitions (i.e. return NULL).  */
  2720.  
  2721.   if (conflict_noted)
  2722.     return NULL;
  2723.  
  2724.   if (!extern_def_p)
  2725.     {
  2726.       /* We have no definitions for this function so do the next best thing.
  2727.          Search for an extern declaration already in prototype form.  */
  2728.  
  2729.       for (dd_p = head; dd_p; dd_p = dd_p->next_for_func)
  2730.         if (!dd_p->is_func_def && !dd_p->is_static && dd_p->prototyped)
  2731.           {
  2732.             extern_def_p = dd_p;    /* save a pointer to the definition */
  2733.             if (!quiet_flag)
  2734.               fprintf (stderr, "%s: warning: using formals list from %s(%d) for function `%s'\n",
  2735.                pname,
  2736.                shortpath (NULL, dd_p->file->hash_entry->symbol),
  2737.                dd_p->line, dd_p->hash_entry->symbol);
  2738.             break;
  2739.           }
  2740.  
  2741.       /* Gripe about unprototyped function declarations that we found no
  2742.          corresponding definition (or other source of prototype information)
  2743.          for.
  2744.  
  2745.          Gripe even if the unprototyped declaration we are worried about
  2746.          exists in a file in one of the "system" include directories.  We
  2747.          can gripe about these because we should have at least found a
  2748.          corresponding (pseudo) definition in the SYSCALLS.c.X file.  If we
  2749.      didn't, then that means that the SYSCALLS.c.X file is missing some
  2750.          needed prototypes for this particular system.  That is worth telling
  2751.          the user about!  */
  2752.  
  2753.       if (!extern_def_p)
  2754.         {
  2755.           const char *file = user->file->hash_entry->symbol;
  2756.  
  2757.           if (!quiet_flag)
  2758.             if (in_system_include_dir (file))
  2759.               {
  2760.         /* Why copy this string into `needed' at all?
  2761.            Why not just use user->ansi_decl without copying?  */
  2762.         char *needed = (char *) alloca (strlen (user->ansi_decl) + 1);
  2763.                 char *p;
  2764.  
  2765.                 strcpy (needed, user->ansi_decl);
  2766.                 p = (NONCONST char *) substr (needed, user->hash_entry->symbol)
  2767.                     + strlen (user->hash_entry->symbol) + 2;
  2768.         /* Avoid having ??? in the string.  */
  2769.         *p++ = '?';
  2770.         *p++ = '?';
  2771.         *p++ = '?';
  2772.                 strcpy (p, ");");
  2773.  
  2774.                 fprintf (stderr, "%s: %d: `%s' used but missing from SYSCALLS\n",
  2775.              shortpath (NULL, file), user->line,
  2776.              needed+7);    /* Don't print "extern " */
  2777.               }
  2778. #if 0
  2779.             else
  2780.               fprintf (stderr, "%s: %d: warning: no extern definition for `%s'\n",
  2781.                shortpath (NULL, file), user->line,
  2782.                user->hash_entry->symbol);
  2783. #endif
  2784.         }
  2785.     }
  2786.   return extern_def_p;
  2787. }
  2788.  
  2789. /* Find the (only?) static definition for a particular function name in a
  2790.    given file.  Here we get the function-name and the file info indirectly
  2791.    from the def_dec_info record pointer which is passed in. */
  2792.  
  2793. static const def_dec_info *
  2794. find_static_definition (user)
  2795.      const def_dec_info *user;
  2796. {
  2797.   const def_dec_info *head = user->hash_entry->ddip;
  2798.   const def_dec_info *dd_p;
  2799.   int num_static_defs = 0;
  2800.   const def_dec_info *static_def_p = NULL;
  2801.  
  2802.   for (dd_p = head; dd_p; dd_p = dd_p->next_for_func)
  2803.     if (dd_p->is_func_def && dd_p->is_static && (dd_p->file == user->file))
  2804.       {
  2805.         static_def_p = dd_p;    /* save a pointer to the definition */
  2806.         num_static_defs++;
  2807.       }
  2808.   if (num_static_defs == 0)
  2809.     {
  2810.       if (!quiet_flag)
  2811.         fprintf (stderr, "%s: warning: no static definition for `%s' in file `%s'\n",
  2812.          pname, head->hash_entry->symbol,
  2813.          shortpath (NULL, user->file->hash_entry->symbol));
  2814.     }
  2815.   else if (num_static_defs > 1)
  2816.     {
  2817.       fprintf (stderr, "%s: multiple static defs of `%s' in file `%s'\n",
  2818.            pname, head->hash_entry->symbol,
  2819.            shortpath (NULL, user->file->hash_entry->symbol));
  2820.       return NULL;
  2821.     }
  2822.   return static_def_p;
  2823. }
  2824.  
  2825. /* Find good prototype style formal argument lists for all of the function
  2826.    declarations which didn't have them before now.
  2827.  
  2828.    To do this we consider each function name one at a time.  For each function
  2829.    name, we look at the items on the linked list of def_dec_info records for
  2830.    that particular name.
  2831.  
  2832.    Somewhere on this list we should find one (and only one) def_dec_info
  2833.    record which represents the actual function definition, and this record
  2834.    should have a nice formal argument list already associated with it.
  2835.  
  2836.    Thus, all we have to do is to connect up all of the other def_dec_info
  2837.    records for this particular function name to the special one which has
  2838.    the full-blown formals list.
  2839.  
  2840.    Of course it is a little more complicated than just that.  See below for
  2841.    more details.  */
  2842.  
  2843. static void
  2844. connect_defs_and_decs (hp)
  2845.      const hash_table_entry *hp;
  2846. {
  2847.   const def_dec_info *dd_p;
  2848.   const def_dec_info *extern_def_p = NULL;
  2849.   int first_extern_reference = 1;
  2850.  
  2851.   /* Traverse the list of definitions and declarations for this particular
  2852.      function name.  For each item on the list, if it is a function
  2853.      definition (either old style or new style) then GCC has already been
  2854.      kind enough to produce a prototype for us, and it is associated with
  2855.      the item already, so declare the item as its own associated "definition".
  2856.  
  2857.      Also, for each item which is only a function declaration, but which
  2858.      nonetheless has its own prototype already (obviously supplied by the user)
  2859.      declare the item as it's own definition.
  2860.  
  2861.      Note that when/if there are multiple user-supplied prototypes already
  2862.      present for multiple declarations of any given function, these multiple
  2863.      prototypes *should* all match exactly with one another and with the
  2864.      prototype for the actual function definition.  We don't check for this
  2865.      here however, since we assume that the compiler must have already done
  2866.      this consistency checking when it was creating the .X files.  */
  2867.  
  2868.   for (dd_p = hp->ddip; dd_p; dd_p = dd_p->next_for_func)
  2869.     if (dd_p->prototyped)
  2870.       ((NONCONST def_dec_info *) dd_p)->definition = dd_p;
  2871.  
  2872.   /* Traverse the list of definitions and declarations for this particular
  2873.      function name.  For each item on the list, if it is an extern function
  2874.      declaration and if it has no associated definition yet, go try to find
  2875.      the matching extern definition for the declaration.
  2876.  
  2877.      When looking for the matching function definition, warn the user if we
  2878.      fail to find one.
  2879.  
  2880.      If we find more that one function definition also issue a warning.
  2881.  
  2882.      Do the search for the matching definition only once per unique function
  2883.      name (and only when absolutely needed) so that we can avoid putting out
  2884.      redundant warning messages, and so that we will only put out warning
  2885.      messages when there is actually a reference (i.e. a declaration) for
  2886.      which we need to find a matching definition.  */
  2887.  
  2888.   for (dd_p = hp->ddip; dd_p; dd_p = dd_p->next_for_func)
  2889.     if (!dd_p->is_func_def && !dd_p->is_static && !dd_p->definition)
  2890.       {
  2891.         if (first_extern_reference)
  2892.           {
  2893.             extern_def_p = find_extern_def (hp->ddip, dd_p);
  2894.             first_extern_reference = 0;
  2895.           }
  2896.         ((NONCONST def_dec_info *) dd_p)->definition = extern_def_p;
  2897.       }
  2898.  
  2899.   /* Traverse the list of definitions and declarations for this particular
  2900.      function name.  For each item on the list, if it is a static function
  2901.      declaration and if it has no associated definition yet, go try to find
  2902.      the matching static definition for the declaration within the same file.
  2903.  
  2904.      When looking for the matching function definition, warn the user if we
  2905.      fail to find one in the same file with the declaration, and refuse to
  2906.      convert this kind of cross-file static function declaration.  After all,
  2907.      this is stupid practice and should be discouraged.
  2908.  
  2909.      We don't have to worry about the possibility that there is more than one
  2910.      matching function definition in the given file because that would have
  2911.      been flagged as an error by the compiler.
  2912.  
  2913.      Do the search for the matching definition only once per unique
  2914.      function-name/source-file pair (and only when absolutely needed) so that
  2915.      we can avoid putting out redundant warning messages, and so that we will
  2916.      only put out warning messages when there is actually a reference (i.e. a
  2917.      declaration) for which we actually need to find a matching definition.  */
  2918.  
  2919.   for (dd_p = hp->ddip; dd_p; dd_p = dd_p->next_for_func)
  2920.     if (!dd_p->is_func_def && dd_p->is_static && !dd_p->definition)
  2921.       {
  2922.         const def_dec_info *dd_p2;
  2923.         const def_dec_info *static_def;
  2924.  
  2925.         /* We have now found a single static declaration for which we need to
  2926.            find a matching definition.  We want to minimize the work (and the
  2927.            number of warnings), so we will find an appropriate (matching)
  2928.            static definition for this declaration, and then distribute it
  2929.            (as the definition for) any and all other static declarations
  2930.            for this function name which occur within the same file, and which
  2931.            do not already have definitions.
  2932.  
  2933.            Note that a trick is used here to prevent subsequent attempts to
  2934.            call find_static_definition for a given function-name & file
  2935.            if the first such call returns NULL.  Essentially, we convert
  2936.            these NULL return values to -1, and put the -1 into the definition
  2937.            field for each other static declaration from the same file which
  2938.            does not already have an associated definition.
  2939.            This makes these other static declarations look like they are
  2940.            actually defined already when the outer loop here revisits them
  2941.            later on.  Thus, the outer loop will skip over them.  Later, we
  2942.            turn the -1's back to NULL's.  */
  2943.  
  2944.       ((NONCONST def_dec_info *) dd_p)->definition =
  2945.         (static_def = find_static_definition (dd_p))
  2946.           ? static_def
  2947.           : (const def_dec_info *) -1;
  2948.  
  2949.       for (dd_p2 = dd_p->next_for_func; dd_p2; dd_p2 = dd_p2->next_for_func)
  2950.         if (!dd_p2->is_func_def && dd_p2->is_static
  2951.          && !dd_p2->definition && (dd_p2->file == dd_p->file))
  2952.           ((NONCONST def_dec_info *)dd_p2)->definition = dd_p->definition;
  2953.       }
  2954.  
  2955.   /* Convert any dummy (-1) definitions we created in the step above back to
  2956.      NULL's (as they should be).  */
  2957.  
  2958.   for (dd_p = hp->ddip; dd_p; dd_p = dd_p->next_for_func)
  2959.     if (dd_p->definition == (def_dec_info *) -1)
  2960.       ((NONCONST def_dec_info *) dd_p)->definition = NULL;
  2961. }
  2962.  
  2963. #endif /* !defined (UNPROTOIZE) */
  2964.  
  2965. /* Give a pointer into the clean text buffer, return a number which is the
  2966.    original source line number that the given pointer points into.  */
  2967.  
  2968. static int
  2969. identify_lineno (clean_p)
  2970.      const char *clean_p;
  2971. {
  2972.   int line_num = 1;
  2973.   const char *scan_p;
  2974.  
  2975.   for (scan_p = clean_text_base; scan_p <= clean_p; scan_p++)
  2976.     if (*scan_p == '\n')
  2977.       line_num++;
  2978.   return line_num;
  2979. }
  2980.  
  2981. /* Issue an error message and give up on doing this particular edit.  */
  2982.  
  2983. static void
  2984. declare_source_confusing (clean_p)
  2985.      const char *clean_p;
  2986. {
  2987.   if (!quiet_flag)
  2988.     {
  2989.       if (clean_p == 0)
  2990.         fprintf (stderr, "%s: %d: warning: source too confusing\n",
  2991.          shortpath (NULL, convert_filename), last_known_line_number);
  2992.       else
  2993.         fprintf (stderr, "%s: %d: warning: source too confusing\n",
  2994.          shortpath (NULL, convert_filename),
  2995.          identify_lineno (clean_p));
  2996.     }
  2997.   longjmp (source_confusion_recovery, 1);
  2998. }
  2999.  
  3000. /* Check that a condition which is expected to be true in the original source
  3001.    code is in fact true.  If not, issue an error message and give up on
  3002.    converting this particular source file.  */
  3003.  
  3004. static void
  3005. check_source (cond, clean_p)
  3006.      int cond;
  3007.      const char *clean_p;
  3008. {
  3009.   if (!cond)
  3010.     declare_source_confusing (clean_p);
  3011. }
  3012.  
  3013. /* If we think of the in-core cleaned text buffer as a memory mapped
  3014.    file (with the variable last_known_line_start acting as sort of a
  3015.    file pointer) then we can imagine doing "seeks" on the buffer.  The
  3016.    following routine implements a kind of "seek" operation for the in-core
  3017.    (cleaned) copy of the source file.  When finished, it returns a pointer to
  3018.    the start of a given (numbered) line in the cleaned text buffer.
  3019.  
  3020.    Note that protoize only has to "seek" in the forward direction on the
  3021.    in-core cleaned text file buffers, and it never needs to back up.
  3022.  
  3023.    This routine is made a little bit faster by remembering the line number
  3024.    (and pointer value) supplied (and returned) from the previous "seek".
  3025.    This prevents us from always having to start all over back at the top
  3026.    of the in-core cleaned buffer again.  */
  3027.  
  3028. static const char *
  3029. seek_to_line (n)
  3030.      int n;
  3031. {
  3032.   if (n < last_known_line_number)
  3033.     abort ();
  3034.  
  3035.   while (n > last_known_line_number)
  3036.     {
  3037.       while (*last_known_line_start != '\n')
  3038.         check_source (++last_known_line_start < clean_text_limit, 0);
  3039.       last_known_line_start++;
  3040.       last_known_line_number++;
  3041.     }
  3042.   return last_known_line_start;
  3043. }
  3044.  
  3045. /* Given a pointer to a character in the cleaned text buffer, return a pointer
  3046.    to the next non-whitepace character which follows it.  */
  3047.  
  3048. static const char *
  3049. forward_to_next_token_char (ptr)
  3050.      const char *ptr;
  3051. {
  3052.   for (++ptr; isspace (*ptr); check_source (++ptr < clean_text_limit, 0))
  3053.     continue;
  3054.   return ptr;
  3055. }
  3056.  
  3057. /* Copy a chunk of text of length `len' and starting at `str' to the current
  3058.    output buffer.  Note that all attempts to add stuff to the current output
  3059.    buffer ultimately go through here.  */
  3060.  
  3061. static void
  3062. output_bytes (str, len)
  3063.      const char *str;
  3064.      size_t len;
  3065. {
  3066.   if ((repl_write_ptr + 1) + len >= repl_text_limit)
  3067.     {
  3068.       size_t new_size = (repl_text_limit - repl_text_base) << 1;
  3069.       char *new_buf = (char *) xrealloc (repl_text_base, new_size);
  3070.  
  3071.       repl_write_ptr = new_buf + (repl_write_ptr - repl_text_base);
  3072.       repl_text_base = new_buf;
  3073.       repl_text_limit = new_buf + new_size;
  3074.     }
  3075.   memcpy (repl_write_ptr + 1, str, len);
  3076.   repl_write_ptr += len;
  3077. }
  3078.  
  3079. /* Copy all bytes (except the trailing null) of a null terminated string to
  3080.    the current output buffer.  */
  3081.  
  3082. static void
  3083. output_string (str)
  3084.      const char *str;
  3085. {
  3086.   output_bytes (str, strlen (str));
  3087. }
  3088.  
  3089. /* Copy some characters from the original text buffer to the current output
  3090.    buffer.
  3091.  
  3092.    This routine takes a pointer argument `p' which is assumed to be a pointer
  3093.    into the cleaned text buffer.  The bytes which are copied are the `original'
  3094.    equivalents for the set of bytes between the last value of `clean_read_ptr'
  3095.    and the argument value `p'.
  3096.  
  3097.    The set of bytes copied however, comes *not* from the cleaned text buffer,
  3098.    but rather from the direct counterparts of these bytes within the original
  3099.    text buffer.
  3100.  
  3101.    Thus, when this function is called, some bytes from the original text
  3102.    buffer (which may include original comments and preprocessing directives)
  3103.    will be copied into the  output buffer.
  3104.  
  3105.    Note that the request implied when this routine is called includes the
  3106.    byte pointed to by the argument pointer `p'.  */
  3107.  
  3108. static void
  3109. output_up_to (p)
  3110.      const char *p;
  3111. {
  3112.   size_t copy_length = (size_t) (p - clean_read_ptr);
  3113.   const char *copy_start = orig_text_base+(clean_read_ptr-clean_text_base)+1;
  3114.  
  3115.   if (copy_length == 0)
  3116.     return;
  3117.  
  3118.   output_bytes (copy_start, copy_length);
  3119.   clean_read_ptr = p;
  3120. }
  3121.  
  3122. /* Given a pointer to a def_dec_info record which represents some form of
  3123.    definition of a function (perhaps a real definition, or in lieu of that
  3124.    perhaps just a declaration with a full prototype) return true if this
  3125.    function is one which we should avoid converting.  Return false
  3126.    otherwise.  */
  3127.  
  3128. static int
  3129. other_variable_style_function (ansi_header)
  3130.      const char *ansi_header;
  3131. {
  3132. #ifdef UNPROTOIZE
  3133.  
  3134.   /* See if we have a stdarg function, or a function which has stdarg style
  3135.      parameters or a stdarg style return type.  */
  3136.  
  3137.   return substr (ansi_header, "...") != 0;
  3138.  
  3139. #else /* !defined (UNPROTOIZE) */
  3140.  
  3141.   /* See if we have a varargs function, or a function which has varargs style
  3142.      parameters or a varargs style return type.  */
  3143.  
  3144.   const char *p;
  3145.   int len = strlen (varargs_style_indicator);
  3146.  
  3147.   for (p = ansi_header; p; )
  3148.     {
  3149.       const char *candidate;
  3150.  
  3151.       if ((candidate = substr (p, varargs_style_indicator)) == 0)
  3152.         return 0;
  3153.       else
  3154.         if (!is_id_char (candidate[-1]) && !is_id_char (candidate[len]))
  3155.           return 1;
  3156.         else
  3157.           p = candidate + 1;
  3158.     }
  3159.   return 0;
  3160. #endif /* !defined (UNPROTOIZE) */
  3161. }
  3162.  
  3163. /* Do the editing operation specifically for a function "declaration".  Note
  3164.    that editing for function "definitions" are handled in a separate routine
  3165.    below.  */
  3166.  
  3167. static void
  3168. edit_fn_declaration (def_dec_p, clean_text_p)
  3169.      const def_dec_info *def_dec_p;
  3170.      const char *volatile clean_text_p;
  3171. {
  3172.   const char *start_formals;
  3173.   const char *end_formals;
  3174.   const char *function_to_edit = def_dec_p->hash_entry->symbol;
  3175.   size_t func_name_len = strlen (function_to_edit);
  3176.   const char *end_of_fn_name;
  3177.  
  3178. #ifndef UNPROTOIZE
  3179.  
  3180.   const f_list_chain_item *this_f_list_chain_item;
  3181.   const def_dec_info *definition = def_dec_p->definition;
  3182.  
  3183.   /* If we are protoizing, and if we found no corresponding definition for
  3184.      this particular function declaration, then just leave this declaration
  3185.      exactly as it is.  */
  3186.  
  3187.   if (!definition)
  3188.     return;
  3189.  
  3190.   /* If we are protoizing, and if the corresponding definition that we found
  3191.      for this particular function declaration defined an old style varargs
  3192.      function, then we want to issue a warning and just leave this function
  3193.      declaration unconverted.  */
  3194.  
  3195.   if (other_variable_style_function (definition->ansi_decl))
  3196.     {
  3197.       if (!quiet_flag)
  3198.         fprintf (stderr, "%s: %d: warning: varargs function declaration not converted\n",
  3199.          shortpath (NULL, def_dec_p->file->hash_entry->symbol),
  3200.          def_dec_p->line);
  3201.       return;
  3202.     }
  3203.  
  3204. #endif /* !defined (UNPROTOIZE) */
  3205.  
  3206.   /* Setup here to recover from confusing source code detected during this
  3207.      particular "edit".  */
  3208.  
  3209.   save_pointers ();
  3210.   if (setjmp (source_confusion_recovery))
  3211.     {
  3212.       restore_pointers ();
  3213.       fprintf (stderr, "%s: declaration of function `%s' not converted\n",
  3214.            pname, function_to_edit);
  3215.       return;
  3216.     }
  3217.  
  3218.   /* We are editing a function declaration.  The line number we did a seek to
  3219.      contains the comma or semicolon which follows the declaration.  Our job
  3220.      now is to scan backwards looking for the function name.  This name *must*
  3221.      be followed by open paren (ignoring whitespace, of course).  We need to
  3222.      replace everything between that open paren and the corresponding closing
  3223.      paren.  If we are protoizing, we need to insert the prototype-style
  3224.      formals lists.  If we are unprotoizing, we need to just delete everything
  3225.      between the pairs of opening and closing parens.  */
  3226.  
  3227.   /* First move up to the end of the line.  */
  3228.  
  3229.   while (*clean_text_p != '\n')
  3230.     check_source (++clean_text_p < clean_text_limit, 0);
  3231.   clean_text_p--;  /* Point to just before the newline character.  */
  3232.  
  3233.   /* Now we can scan backwards for the function name.  */
  3234.  
  3235.   do
  3236.     {
  3237.       for (;;)
  3238.         {
  3239.           /* Scan leftwards until we find some character which can be
  3240.              part of an identifier.  */
  3241.  
  3242.           while (!is_id_char (*clean_text_p))
  3243.             check_source (--clean_text_p > clean_read_ptr, 0);
  3244.  
  3245.           /* Scan backwards until we find a char that cannot be part of an
  3246.              identifier.  */
  3247.  
  3248.           while (is_id_char (*clean_text_p))
  3249.             check_source (--clean_text_p > clean_read_ptr, 0);
  3250.  
  3251.           /* Having found an "id break", see if the following id is the one
  3252.              that we are looking for.  If so, then exit from this loop.  */
  3253.  
  3254.           if (!strncmp (clean_text_p+1, function_to_edit, func_name_len))
  3255.             {
  3256.               char ch = *(clean_text_p + 1 + func_name_len);
  3257.  
  3258.               /* Must also check to see that the name in the source text
  3259.                  ends where it should (in order to prevent bogus matches
  3260.                  on similar but longer identifiers.  */
  3261.  
  3262.               if (! is_id_char (ch))
  3263.                 break;            /* exit from loop */
  3264.             }
  3265.         }
  3266.     
  3267.       /* We have now found the first perfect match for the function name in
  3268.          our backward search.  This may or may not be the actual function
  3269.          name at the start of the actual function declaration (i.e. we could
  3270.          have easily been mislead).  We will try to avoid getting fooled too
  3271.          often by looking forward for the open paren which should follow the
  3272.          identifier we just found.  We ignore whitespace while hunting.  If
  3273.          the next non-whitespace byte we see is *not* an open left paren,
  3274.          then we must assume that we have been fooled and we start over
  3275.          again accordingly.  Note that there is no guarantee, that even if
  3276.          we do see the open paren, that we are in the right place.
  3277.          Programmers do the strangest things sometimes!  */
  3278.     
  3279.       end_of_fn_name = clean_text_p + strlen (def_dec_p->hash_entry->symbol);
  3280.       start_formals = forward_to_next_token_char (end_of_fn_name);
  3281.     }
  3282.   while (*start_formals != '(');
  3283.  
  3284.   /* start_of_formals now points to the opening left paren which immediately
  3285.      follows the name of the function.  */
  3286.  
  3287.   /* Note that there may be several formals lists which need to be modified
  3288.      due to the possibility that the return type of this function is a
  3289.      pointer-to-function type.  If there are several formals lists, we
  3290.      convert them in left-to-right order here.  */
  3291.  
  3292. #ifndef UNPROTOIZE
  3293.   this_f_list_chain_item = definition->f_list_chain;
  3294. #endif /* !defined (UNPROTOIZE) */
  3295.  
  3296.   for (;;)
  3297.     {
  3298.       {
  3299.         int depth;
  3300.  
  3301.         end_formals = start_formals + 1;
  3302.         depth = 1;
  3303.         for (; depth; check_source (++end_formals < clean_text_limit, 0))
  3304.           {
  3305.             switch (*end_formals)
  3306.               {
  3307.                 case '(':
  3308.                   depth++;
  3309.                   break;
  3310.                 case ')':
  3311.                   depth--;
  3312.                   break;
  3313.               }
  3314.           }
  3315.         end_formals--;
  3316.       }
  3317.  
  3318.       /* end_formals now points to the closing right paren of the formals
  3319.          list whose left paren is pointed to by start_formals.  */
  3320.     
  3321.       /* Now, if we are protoizing, we insert the new ANSI-style formals list
  3322.          attached to the associated definition of this function.  If however
  3323.          we are unprotoizing, then we simply delete any formals list which
  3324.          may be present.  */
  3325.     
  3326.       output_up_to (start_formals);
  3327. #ifndef UNPROTOIZE
  3328.       if (this_f_list_chain_item)
  3329.         {
  3330.           output_string (this_f_list_chain_item->formals_list);
  3331.           this_f_list_chain_item = this_f_list_chain_item->chain_next;
  3332.         }
  3333.       else
  3334.         {
  3335.           if (!quiet_flag)
  3336.             fprintf (stderr, "%s: warning: too many parameter lists in declaration of `%s'\n",
  3337.              pname, def_dec_p->hash_entry->symbol);
  3338.           check_source (0, end_formals);  /* leave the declaration intact */
  3339.         }
  3340. #endif /* !defined (UNPROTOIZE) */
  3341.       clean_read_ptr = end_formals - 1;
  3342.  
  3343.       /* Now see if it looks like there may be another formals list associated
  3344.          with the function declaration that we are converting (following the
  3345.          formals list that we just converted.  */
  3346.  
  3347.       {
  3348.         const char *another_r_paren = forward_to_next_token_char (end_formals);
  3349.  
  3350.         if ((*another_r_paren != ')')
  3351.             || (*(start_formals = forward_to_next_token_char (another_r_paren)) != '('))
  3352.           {
  3353. #ifndef UNPROTOIZE
  3354.             if (this_f_list_chain_item)
  3355.               {
  3356.                 if (!quiet_flag)
  3357.                   fprintf (stderr, "\n%s: warning: too few parameter lists in declaration of `%s'\n",
  3358.                pname, def_dec_p->hash_entry->symbol);
  3359.                 check_source (0, start_formals); /* leave the decl intact */
  3360.               }
  3361. #endif /* !defined (UNPROTOIZE) */
  3362.             break;
  3363.   
  3364.           }
  3365.       }
  3366.  
  3367.       /* There does appear to be yet another formals list, so loop around
  3368.          again, and convert it also.  */
  3369.     }
  3370. }
  3371.  
  3372. /* Edit a whole group of formals lists, starting with the rightmost one
  3373.    from some set of formals lists.  This routine is called once (from the
  3374.    outside) for each function declaration which is converted.  It is
  3375.    recursive however, and it calls itself once for each remaining formal
  3376.    list that lies to the left of the one it was originally called to work
  3377.    on.  Thus, a whole set gets done in right-to-left order.
  3378.  
  3379.    This routine returns non-zero if it thinks that it should not be trying
  3380.    to convert this particular function definition (because the name of the
  3381.    function doesn't match the one expected).  */
  3382.  
  3383. static int
  3384. edit_formals_lists (end_formals, f_list_count, def_dec_p)
  3385.      const char *end_formals;
  3386.      unsigned int f_list_count;
  3387.      const def_dec_info *def_dec_p;
  3388. {
  3389.   const char *start_formals;
  3390.   int depth;
  3391.  
  3392.   start_formals = end_formals - 1;
  3393.   depth = 1;
  3394.   for (; depth; check_source (--start_formals > clean_read_ptr, 0))
  3395.     {
  3396.       switch (*start_formals)
  3397.         {
  3398.           case '(':
  3399.             depth--;
  3400.             break;
  3401.           case ')':
  3402.             depth++;
  3403.             break;
  3404.         }
  3405.     }
  3406.   start_formals++;
  3407.  
  3408.   /* start_formals now points to the opening left paren of the formals list.  */
  3409.  
  3410.   f_list_count--;
  3411.  
  3412.   if (f_list_count)
  3413.     {
  3414.       const char *next_end;
  3415.  
  3416.       /* There should be more formal lists to the left of here.  */
  3417.  
  3418.       next_end = start_formals - 1;
  3419.       check_source (next_end > clean_read_ptr, 0);
  3420.       while (isspace (*next_end))
  3421.         check_source (--next_end > clean_read_ptr, 0);
  3422.       check_source (*next_end == ')', next_end);
  3423.       check_source (--next_end > clean_read_ptr, 0);
  3424.       check_source (*next_end == ')', next_end);
  3425.       if (edit_formals_lists (next_end, f_list_count, def_dec_p))
  3426.         return 1;
  3427.     }
  3428.  
  3429.   /* Check that the function name in the header we are working on is the same
  3430.      as the one we would expect to find.  If not, issue a warning and return
  3431.      non-zero.  */
  3432.  
  3433.   if (f_list_count == 0)
  3434.     {
  3435.       const char *expected = def_dec_p->hash_entry->symbol;
  3436.       const char *func_name_start;
  3437.       const char *func_name_limit;
  3438.       size_t func_name_len;
  3439.  
  3440.       for (func_name_limit = start_formals-1; isspace (*func_name_limit); )
  3441.         check_source (--func_name_limit > clean_read_ptr, 0);
  3442.  
  3443.       for (func_name_start = func_name_limit++;
  3444.            is_id_char (*func_name_start);
  3445.            func_name_start--)
  3446.         check_source (func_name_start > clean_read_ptr, 0);
  3447.       func_name_start++;
  3448.       func_name_len = func_name_limit - func_name_start;
  3449.       if (func_name_len == 0)
  3450.         check_source (0, func_name_start);
  3451.       if (func_name_len != strlen (expected)
  3452.       || strncmp (func_name_start, expected, func_name_len))
  3453.         {
  3454.           fprintf (stderr, "%s: %d: warning: found `%s' but expected `%s'\n",
  3455.            shortpath (NULL, def_dec_p->file->hash_entry->symbol),
  3456.            identify_lineno (func_name_start),
  3457.            dupnstr (func_name_start, func_name_len),
  3458.            expected);
  3459.           return 1;
  3460.         }
  3461.     }
  3462.  
  3463.   output_up_to (start_formals);
  3464.  
  3465. #ifdef UNPROTOIZE
  3466.   if (f_list_count == 0)
  3467.     output_string (def_dec_p->formal_names);
  3468. #else /* !defined (UNPROTOIZE) */
  3469.   {
  3470.     unsigned f_list_depth;
  3471.     const f_list_chain_item *flci_p = def_dec_p->f_list_chain;
  3472.  
  3473.     /* At this point, the current value of f_list count says how many
  3474.        links we have to follow through the f_list_chain to get to the
  3475.        particular formals list that we need to output next.  */
  3476.  
  3477.     for (f_list_depth = 0; f_list_depth < f_list_count; f_list_depth++)
  3478.       flci_p = flci_p->chain_next;
  3479.     output_string (flci_p->formals_list);
  3480.   }
  3481. #endif /* !defined (UNPROTOIZE) */
  3482.  
  3483.   clean_read_ptr = end_formals - 1;
  3484.   return 0;
  3485. }
  3486.  
  3487. /* Given a pointer to a byte in the clean text buffer which points to the
  3488.    beginning of a line that contains a "follower" token for a function
  3489.    definition header, do whatever is necessary to find the right closing
  3490.    paren for the rightmost formals list of the function definition header.
  3491. */
  3492.  
  3493. static const char *
  3494. find_rightmost_formals_list (clean_text_p)
  3495.      const char *clean_text_p;
  3496. {
  3497.   const char *end_formals;
  3498.  
  3499.   /* We are editing a function definition.  The line number we did a seek
  3500.      to contains the first token which immediately follows the entire set of
  3501.      formals lists which are part of this particular function definition
  3502.      header.
  3503.  
  3504.      Our job now is to scan leftwards in the clean text looking for the
  3505.      right-paren which is at the end of the function header's rightmost
  3506.      formals list.
  3507.  
  3508.      If we ignore whitespace, this right paren should be the first one we
  3509.      see which is (ignoring whitespace) immediately followed either by the
  3510.      open curly-brace beginning the function body or by an alphabetic
  3511.      character (in the case where the function definition is in old (K&R)
  3512.      style and there are some declarations of formal parameters).  */
  3513.  
  3514.    /* It is possible that the right paren we are looking for is on the
  3515.       current line (together with its following token).  Just in case that
  3516.       might be true, we start out here by skipping down to the right end of
  3517.       the current line before starting our scan.  */
  3518.  
  3519.   for (end_formals = clean_text_p; *end_formals != '\n'; end_formals++)
  3520.     continue;
  3521.   end_formals--;
  3522.  
  3523. #ifdef UNPROTOIZE
  3524.  
  3525.   /* Now scan backwards while looking for the right end of the rightmost
  3526.      formals list associated with this function definition.  */
  3527.  
  3528.   {
  3529.     char ch;
  3530.     const char *l_brace_p;
  3531.  
  3532.     /* Look leftward and try to find a right-paren.  */
  3533.  
  3534.     while (*end_formals != ')')
  3535.       {
  3536.     if (isspace (*end_formals))
  3537.       while (isspace (*end_formals))
  3538.         check_source (--end_formals > clean_read_ptr, 0);
  3539.     else
  3540.       check_source (--end_formals > clean_read_ptr, 0);
  3541.       }
  3542.  
  3543.     ch = *(l_brace_p = forward_to_next_token_char (end_formals));
  3544.     /* Since we are unprotoizing an ANSI-style (prototyped) function
  3545.        definition, there had better not be anything (except whitespace)
  3546.        between the end of the ANSI formals list and the beginning of the
  3547.        function body (i.e. the '{').  */
  3548.  
  3549.     check_source (ch == '{', l_brace_p);
  3550.   }
  3551.  
  3552. #else /* !defined (UNPROTOIZE) */
  3553.  
  3554.   /* Now scan backwards while looking for the right end of the rightmost
  3555.      formals list associated with this function definition.  */
  3556.  
  3557.   while (1)
  3558.     {
  3559.       char ch;
  3560.       const char *l_brace_p;
  3561.  
  3562.       /* Look leftward and try to find a right-paren.  */
  3563.  
  3564.       while (*end_formals != ')')
  3565.         {
  3566.           if (isspace (*end_formals))
  3567.             while (isspace (*end_formals))
  3568.               check_source (--end_formals > clean_read_ptr, 0);
  3569.           else
  3570.             check_source (--end_formals > clean_read_ptr, 0);
  3571.         }
  3572.  
  3573.       ch = *(l_brace_p = forward_to_next_token_char (end_formals));
  3574.  
  3575.       /* Since it is possible that we found a right paren before the starting
  3576.          '{' of the body which IS NOT the one at the end of the real K&R
  3577.          formals list (say for instance, we found one embedded inside one of
  3578.          the old K&R formal parameter declarations) we have to check to be
  3579.          sure that this is in fact the right paren that we were looking for.
  3580.  
  3581.          The one we were looking for *must* be followed by either a '{' or
  3582.          by an alphabetic character, while others *cannot* validly be followed
  3583.          by such characters.  */
  3584.  
  3585.       if ((ch == '{') || isalpha (ch))
  3586.         break;
  3587.  
  3588.       /* At this point, we have found a right paren, but we know that it is
  3589.          not the one we were looking for, so backup one character and keep
  3590.          looking.  */
  3591.  
  3592.       check_source (--end_formals > clean_read_ptr, 0);
  3593.     }
  3594.  
  3595. #endif /* !defined (UNPROTOIZE) */
  3596.  
  3597.   return end_formals;
  3598. }
  3599.  
  3600. #ifndef UNPROTOIZE
  3601.  
  3602. /* Insert into the output file a totally new declaration for a function
  3603.    which (up until now) was being called from within the current block
  3604.    without having been declared at any point such that the declaration
  3605.    was visible (i.e. in scope) at the point of the call.
  3606.  
  3607.    We need to add in explicit declarations for all such function calls
  3608.    in order to get the full benefit of prototype-based function call
  3609.    parameter type checking.  */
  3610.  
  3611. static void
  3612. add_local_decl (def_dec_p, clean_text_p)
  3613.      const def_dec_info *def_dec_p;
  3614.      const char *clean_text_p;
  3615. {
  3616.   const char *start_of_block;
  3617.   const char *function_to_edit = def_dec_p->hash_entry->symbol;
  3618.  
  3619.   /* Don't insert new local explicit declarations unless explicitly requested
  3620.      to do so.  */
  3621.  
  3622.   if (!local_flag)
  3623.     return;
  3624.  
  3625.   /* Setup here to recover from confusing source code detected during this
  3626.      particular "edit".  */
  3627.  
  3628.   save_pointers ();
  3629.   if (setjmp (source_confusion_recovery))
  3630.     {
  3631.       restore_pointers ();
  3632.       fprintf (stderr, "%s: local declaration for function `%s' not inserted\n",
  3633.            pname, function_to_edit);
  3634.       return;
  3635.     }
  3636.  
  3637.   /* We have already done a seek to the start of the line which should
  3638.      contain *the* open curly brace which begins the block in which we need
  3639.      to insert an explicit function declaration (to replace the implicit one).
  3640.  
  3641.      Now we scan that line, starting from the left, until we find the
  3642.      open curly brace we are looking for.  Note that there may actually be
  3643.      multiple open curly braces on the given line, but we will be happy
  3644.      with the leftmost one no matter what.  */
  3645.  
  3646.   start_of_block = clean_text_p;
  3647.   while (*start_of_block != '{' && *start_of_block != '\n')
  3648.     check_source (++start_of_block < clean_text_limit, 0);
  3649.  
  3650.   /* Note that the line from the original source could possibly
  3651.      contain *no* open curly braces!  This happens if the line contains
  3652.      a macro call which expands into a chunk of text which includes a
  3653.      block (and that block's associated open and close curly braces).
  3654.      In cases like this, we give up, issue a warning, and do nothing.  */
  3655.  
  3656.   if (*start_of_block != '{')
  3657.     {
  3658.       if (!quiet_flag)
  3659.         fprintf (stderr,
  3660.           "\n%s: %d: warning: can't add declaration of `%s' into macro call\n",
  3661.           def_dec_p->file->hash_entry->symbol, def_dec_p->line, 
  3662.           def_dec_p->hash_entry->symbol);
  3663.       return;
  3664.     }
  3665.  
  3666.   /* Figure out what a nice (pretty) indentation would be for the new
  3667.      declaration we are adding.  In order to do this, we must scan forward
  3668.      from the '{' until we find the first line which starts with some
  3669.      non-whitespace characters (i.e. real "token" material).  */
  3670.  
  3671.   {
  3672.     const char *ep = forward_to_next_token_char (start_of_block) - 1;
  3673.     const char *sp;
  3674.  
  3675.     /* Now we have ep pointing at the rightmost byte of some existing indent
  3676.        stuff.  At least that is the hope.
  3677.  
  3678.        We can now just scan backwards and find the left end of the existing
  3679.        indentation string, and then copy it to the output buffer.  */
  3680.  
  3681.     for (sp = ep; isspace (*sp) && *sp != '\n'; sp--)
  3682.       continue;
  3683.  
  3684.     /* Now write out the open { which began this block, and any following
  3685.        trash up to and including the last byte of the existing indent that
  3686.        we just found.  */
  3687.  
  3688.     output_up_to (ep);
  3689.   
  3690.     /* Now we go ahead and insert the new declaration at this point.
  3691.  
  3692.        If the definition of the given function is in the same file that we
  3693.        are currently editing, and if its full ANSI declaration normally
  3694.        would start with the keyword `extern', suppress the `extern'.  */
  3695.   
  3696.     {
  3697.       const char *decl = def_dec_p->definition->ansi_decl;
  3698.   
  3699.       if ((*decl == 'e') && (def_dec_p->file == def_dec_p->definition->file))
  3700.         decl += 7;
  3701.       output_string (decl);
  3702.     }
  3703.  
  3704.     /* Finally, write out a new indent string, just like the preceding one
  3705.        that we found.  This will typically include a newline as the first
  3706.        character of the indent string.  */
  3707.  
  3708.     output_bytes (sp, (size_t) (ep - sp) + 1);
  3709.   }
  3710. }
  3711.  
  3712. /* Given a pointer to a file_info record, and a pointer to the beginning
  3713.    of a line (in the clean text buffer) which is assumed to contain the
  3714.    first "follower" token for the first function definition header in the
  3715.    given file, find a good place to insert some new global function
  3716.    declarations (which will replace scattered and imprecise implicit ones)
  3717.    and then insert the new explicit declaration at that point in the file.  */
  3718.  
  3719. static void
  3720. add_global_decls (file_p, clean_text_p)
  3721.      const file_info *file_p;
  3722.      const char *clean_text_p;
  3723. {
  3724.   const def_dec_info *dd_p;
  3725.   const char *scan_p;
  3726.  
  3727.   /* Setup here to recover from confusing source code detected during this
  3728.      particular "edit".  */
  3729.  
  3730.   save_pointers ();
  3731.   if (setjmp (source_confusion_recovery))
  3732.     {
  3733.       restore_pointers ();
  3734.       fprintf (stderr, "%s: global declarations for file `%s' not inserted\n",
  3735.            pname, shortpath (NULL, file_p->hash_entry->symbol));
  3736.       return;
  3737.     }
  3738.  
  3739.   /* Start by finding a good location for adding the new explicit function
  3740.      declarations.  To do this, we scan backwards, ignoring whitespace
  3741.      and comments and other junk until we find either a semicolon, or until
  3742.      we hit the beginning of the file.  */
  3743.  
  3744.   scan_p = find_rightmost_formals_list (clean_text_p);
  3745.   for (;; --scan_p)
  3746.     {
  3747.       if (scan_p < clean_text_base)
  3748.         break;
  3749.       check_source (scan_p > clean_read_ptr, 0);
  3750.       if (*scan_p == ';')
  3751.         break;
  3752.     }
  3753.  
  3754.   /* scan_p now points either to a semicolon, or to just before the start
  3755.      of the whole file.  */
  3756.  
  3757.   /* Now scan forward for the first non-whitespace character.  In theory,
  3758.      this should be the first character of the following function definition
  3759.      header.  We will put in the added declarations just prior to that. */
  3760.  
  3761.   scan_p++;
  3762.   while (isspace (*scan_p))
  3763.     scan_p++;
  3764.   scan_p--;
  3765.  
  3766.   output_up_to (scan_p);
  3767.  
  3768.   /* Now write out full prototypes for all of the things that had been
  3769.      implicitly declared in this file (but only those for which we were
  3770.      actually able to find unique matching definitions).  Avoid duplicates
  3771.      by marking things that we write out as we go.   */
  3772.  
  3773.   {
  3774.     int some_decls_added = 0;
  3775.   
  3776.     for (dd_p = file_p->defs_decs; dd_p; dd_p = dd_p->next_in_file)
  3777.       if (dd_p->is_implicit && dd_p->definition && !dd_p->definition->written)
  3778.         {
  3779.           const char *decl = dd_p->definition->ansi_decl;
  3780.   
  3781.           /* If the function for which we are inserting a declaration is
  3782.              actually defined later in the same file, then suppress the
  3783.              leading `extern' keyword (if there is one).  */
  3784.   
  3785.           if (*decl == 'e' && (dd_p->file == dd_p->definition->file))
  3786.             decl += 7;
  3787.   
  3788.           output_string ("\n");
  3789.           output_string (decl);
  3790.           some_decls_added = 1;
  3791.           ((NONCONST def_dec_info *) dd_p->definition)->written = 1;
  3792.         }
  3793.     if (some_decls_added)
  3794.       output_string ("\n\n");
  3795.   }
  3796.  
  3797.   /* Unmark all of the definitions that we just marked.  */
  3798.  
  3799.   for (dd_p = file_p->defs_decs; dd_p; dd_p = dd_p->next_in_file)
  3800.     if (dd_p->definition)
  3801.       ((NONCONST def_dec_info *) dd_p->definition)->written = 0;
  3802. }
  3803.  
  3804. #endif /* !defined (UNPROTOIZE) */
  3805.  
  3806. /* Do the editing operation specifically for a function "definition".  Note
  3807.    that editing operations for function "declarations" are handled by a
  3808.    separate routine above.  */
  3809.  
  3810. static void
  3811. edit_fn_definition (def_dec_p, clean_text_p)
  3812.      const def_dec_info *def_dec_p;
  3813.      const char *clean_text_p;
  3814. {
  3815.   const char *end_formals;
  3816.   const char *function_to_edit = def_dec_p->hash_entry->symbol;
  3817.  
  3818.   /* Setup here to recover from confusing source code detected during this
  3819.      particular "edit".  */
  3820.  
  3821.   save_pointers ();
  3822.   if (setjmp (source_confusion_recovery))
  3823.     {
  3824.       restore_pointers ();
  3825.       fprintf (stderr, "%s: definition of function `%s' not converted\n",
  3826.            pname, function_to_edit);
  3827.       return;
  3828.     }
  3829.  
  3830.   end_formals = find_rightmost_formals_list (clean_text_p);
  3831.  
  3832.   /* end_of_formals now points to the closing right paren of the rightmost
  3833.      formals list which is actually part of the `header' of the function
  3834.      definition that we are converting.  */
  3835.  
  3836.   /* If the header of this function definition looks like it declares a
  3837.      function with a variable number of arguments, and if the way it does
  3838.      that is different from that way we would like it (i.e. varargs vs.
  3839.      stdarg) then issue a warning and leave the header unconverted.  */
  3840.      
  3841.   if (other_variable_style_function (def_dec_p->ansi_decl))
  3842.     {
  3843.       if (!quiet_flag)
  3844.         fprintf (stderr, "%s: %d: warning: definition of %s not converted\n",
  3845.          shortpath (NULL, def_dec_p->file->hash_entry->symbol),
  3846.          identify_lineno (end_formals), 
  3847.          other_var_style);
  3848.       output_up_to (end_formals);
  3849.       return;
  3850.     }
  3851.  
  3852.   if (edit_formals_lists (end_formals, def_dec_p->f_list_count, def_dec_p))
  3853.     {
  3854.       restore_pointers ();
  3855.       fprintf (stderr, "%s: definition of function `%s' not converted\n",
  3856.            pname, function_to_edit);
  3857.       return;
  3858.     }
  3859.  
  3860.   /* Have to output the last right paren because this never gets flushed by
  3861.      edit_formals_list.  */
  3862.  
  3863.   output_up_to (end_formals);
  3864.  
  3865. #ifdef UNPROTOIZE
  3866.   {
  3867.     const char *decl_p;
  3868.     const char *semicolon_p;
  3869.     const char *limit_p;
  3870.     const char *scan_p;
  3871.     int had_newlines = 0;
  3872.  
  3873.     /* Now write out the K&R style formal declarations, one per line.  */
  3874.  
  3875.     decl_p = def_dec_p->formal_decls;
  3876.     limit_p = decl_p + strlen (decl_p);
  3877.     for (;decl_p < limit_p; decl_p = semicolon_p + 2)
  3878.       {
  3879.         for (semicolon_p = decl_p; *semicolon_p != ';'; semicolon_p++)
  3880.           continue;
  3881.         output_string ("\n");
  3882.         output_string (indent_string);
  3883.         output_bytes (decl_p, (size_t) ((semicolon_p + 1) - decl_p));
  3884.       }
  3885.  
  3886.     /* If there are no newlines between the end of the formals list and the
  3887.        start of the body, we should insert one now.  */
  3888.  
  3889.     for (scan_p = end_formals+1; *scan_p != '{'; )
  3890.       {
  3891.         if (*scan_p == '\n')
  3892.           {
  3893.             had_newlines = 1;
  3894.             break;
  3895.           }
  3896.         check_source (++scan_p < clean_text_limit, 0);
  3897.       }
  3898.     if (!had_newlines)
  3899.       output_string ("\n");
  3900.   }
  3901. #else /* !defined (UNPROTOIZE) */
  3902.   /* If we are protoizing, there may be some flotsam & jetsam (like comments
  3903.      and preprocessing directives) after the old formals list but before
  3904.      the following { and we would like to preserve that stuff while effectively
  3905.      deleting the existing K&R formal parameter declarations.  We do so here
  3906.      in a rather tricky way.  Basically, we white out any stuff *except*
  3907.      the comments/pp-directives in the original text buffer, then, if there
  3908.      is anything in this area *other* than whitespace, we output it.  */
  3909.   {
  3910.     const char *end_formals_orig;
  3911.     const char *start_body;
  3912.     const char *start_body_orig;
  3913.     const char *scan;
  3914.     const char *scan_orig;
  3915.     int have_flotsam = 0;
  3916.     int have_newlines = 0;
  3917.  
  3918.     for (start_body = end_formals + 1; *start_body != '{';)
  3919.       check_source (++start_body < clean_text_limit, 0);
  3920.  
  3921.     end_formals_orig = orig_text_base + (end_formals - clean_text_base);
  3922.     start_body_orig = orig_text_base + (start_body - clean_text_base);
  3923.     scan = end_formals + 1;
  3924.     scan_orig = end_formals_orig + 1;
  3925.     for (; scan < start_body; scan++, scan_orig++)
  3926.       {
  3927.         if (*scan == *scan_orig)
  3928.           {
  3929.             have_newlines |= (*scan_orig == '\n');
  3930.             /* Leave identical whitespace alone.  */
  3931.             if (!isspace (*scan_orig))
  3932.               *((NONCONST char *)scan_orig) = ' '; /* identical - so whiteout */
  3933.           }
  3934.         else
  3935.           have_flotsam = 1;
  3936.       }
  3937.     if (have_flotsam)
  3938.       output_bytes (end_formals_orig + 1,
  3939.             (size_t) (start_body_orig - end_formals_orig) - 1);
  3940.     else
  3941.       if (have_newlines)
  3942.         output_string ("\n");
  3943.       else
  3944.         output_string (" ");
  3945.     clean_read_ptr = start_body - 1;
  3946.   }
  3947. #endif /* !defined (UNPROTOIZE) */
  3948. }
  3949.  
  3950. /* Clean up the clean text buffer.  Do this by converting comments and
  3951.    preprocessing directives into spaces.   Also convert line continuations
  3952.    into whitespace.  Also, whiteout string and character literals.  */
  3953.  
  3954. static void
  3955. do_cleaning (new_clean_text_base, new_clean_text_limit)
  3956.      char *new_clean_text_base;
  3957.      char *new_clean_text_limit;
  3958. {
  3959.   char *scan_p;
  3960.   int non_whitespace_since_newline = 0;
  3961.  
  3962.   for (scan_p = new_clean_text_base; scan_p < new_clean_text_limit; scan_p++)
  3963.     {
  3964.       switch (*scan_p)
  3965.         {
  3966.           case '/':            /* Handle comments.  */
  3967.             if (scan_p[1] != '*')
  3968.               goto regular;
  3969.             non_whitespace_since_newline = 1;
  3970.             scan_p[0] = ' ';
  3971.             scan_p[1] = ' ';
  3972.             scan_p += 2;
  3973.             while (scan_p[1] != '/' || scan_p[0] != '*')
  3974.               {
  3975.                 if (!isspace (*scan_p))
  3976.                   *scan_p = ' ';
  3977.                 if (++scan_p >= new_clean_text_limit)
  3978.                   abort ();
  3979.               }
  3980.             *scan_p++ = ' ';
  3981.             *scan_p = ' ';
  3982.             break;
  3983.  
  3984.           case '#':            /* Handle pp directives.  */
  3985.             if (non_whitespace_since_newline)
  3986.               goto regular;
  3987.             *scan_p = ' ';
  3988.             while (scan_p[1] != '\n' || scan_p[0] == '\\')
  3989.               {
  3990.                 if (!isspace (*scan_p))
  3991.                   *scan_p = ' ';
  3992.                 if (++scan_p >= new_clean_text_limit)
  3993.                   abort ();
  3994.               }
  3995.             *scan_p++ = ' ';
  3996.             break;
  3997.  
  3998.           case '\'':            /* Handle character literals.  */
  3999.             non_whitespace_since_newline = 1;
  4000.             while (scan_p[1] != '\'' || scan_p[0] == '\\')
  4001.               {
  4002.                 if (scan_p[0] == '\\' && !isspace (scan_p[1]))
  4003.                   scan_p[1] = ' ';
  4004.                 if (!isspace (*scan_p))
  4005.                   *scan_p = ' ';
  4006.                 if (++scan_p >= new_clean_text_limit)
  4007.                   abort ();
  4008.               }
  4009.             *scan_p++ = ' ';
  4010.             break;
  4011.  
  4012.           case '"':            /* Handle string literals.  */
  4013.             non_whitespace_since_newline = 1;
  4014.             while (scan_p[1] != '"' || scan_p[0] == '\\')
  4015.               {
  4016.                 if (scan_p[0] == '\\' && !isspace (scan_p[1]))
  4017.                   scan_p[1] = ' ';
  4018.                 if (!isspace (*scan_p))
  4019.                   *scan_p = ' ';
  4020.                 if (++scan_p >= new_clean_text_limit)
  4021.                   abort ();
  4022.               }
  4023.             *scan_p++ = ' ';
  4024.             break;
  4025.  
  4026.           case '\\':            /* Handle line continuations.  */
  4027.             if (scan_p[1] != '\n')
  4028.               goto regular;
  4029.             *scan_p = ' ';
  4030.             break;
  4031.  
  4032.           case '\n':
  4033.             non_whitespace_since_newline = 0;    /* Reset.  */
  4034.             break;
  4035.  
  4036.           case ' ':
  4037.           case '\v':
  4038.           case '\t':
  4039.           case '\r':
  4040.           case '\f':
  4041.           case '\b':
  4042.             break;        /* Whitespace characters.  */
  4043.  
  4044.           default:
  4045. regular:
  4046.             non_whitespace_since_newline = 1;
  4047.             break;
  4048.         }
  4049.     }
  4050. }
  4051.  
  4052. /* Given a pointer to the closing right parenthesis for a particular formals
  4053.    list (in the clean text buffer) find the corresponding left parenthesis
  4054.    and return a pointer to it.  */
  4055.  
  4056. static const char *
  4057. careful_find_l_paren (p)
  4058.      const char *p;
  4059. {
  4060.   const char *q;
  4061.   int paren_depth;
  4062.  
  4063.   for (paren_depth = 1, q = p-1; paren_depth; check_source (--q >= clean_text_base, 0))
  4064.     {
  4065.       switch (*q)
  4066.         {
  4067.           case ')':
  4068.             paren_depth++;
  4069.             break;
  4070.           case '(':
  4071.             paren_depth--;
  4072.             break;
  4073.         }
  4074.     }
  4075.   return ++q;
  4076. }
  4077.  
  4078. /* Scan the clean text buffer for cases of function definitions that we
  4079.    don't really know about because they were preprocessed out when the
  4080.    aux info files were created.
  4081.  
  4082.    In this version of protoize/unprotoize we just give a warning for each
  4083.    one found.  A later version may be able to at least unprotoize such
  4084.    missed items.
  4085.  
  4086.    Note that we may easily find all function definitions simply by
  4087.    looking for places where there is a left paren which is (ignoring
  4088.    whitespace) immediately followed by either a left-brace or by an
  4089.    upper or lower case letter.  Whenever we find this combination, we
  4090.    have also found a function definition header.
  4091.  
  4092.    Finding function *declarations* using syntactic clues is much harder.
  4093.    I will probably try to do this in a later version though.  */
  4094.  
  4095. static void
  4096. scan_for_missed_items (file_p)
  4097.      const file_info *file_p;
  4098. {
  4099.   static const char *scan_p;
  4100.   const char *limit = clean_text_limit - 3;
  4101.   static const char *backup_limit;
  4102.  
  4103.   backup_limit = clean_text_base - 1;
  4104.  
  4105.   for (scan_p = clean_text_base; scan_p < limit; scan_p++)
  4106.     {
  4107.       if (*scan_p == ')')
  4108.         {
  4109.           static const char *last_r_paren;
  4110.           const char *ahead_p;
  4111.  
  4112.           last_r_paren = scan_p;
  4113.  
  4114.           for (ahead_p = scan_p + 1; isspace (*ahead_p); )
  4115.             check_source (++ahead_p < limit, limit);
  4116.  
  4117.           scan_p = ahead_p - 1;
  4118.  
  4119.           if (isalpha (*ahead_p) || *ahead_p == '{')
  4120.             {
  4121.               const char *last_l_paren;
  4122.               const int lineno = identify_lineno (ahead_p);
  4123.  
  4124.               if (setjmp (source_confusion_recovery))
  4125.                 continue;
  4126.  
  4127.               /* We know we have a function definition header.  Now skip
  4128.                  leftwards over all of its associated formals lists.  */
  4129.  
  4130.               do
  4131.                 {
  4132.                   last_l_paren = careful_find_l_paren (last_r_paren);
  4133.                   for (last_r_paren = last_l_paren-1; isspace (*last_r_paren); )
  4134.                     check_source (--last_r_paren >= backup_limit, backup_limit);
  4135.                 }
  4136.               while (*last_r_paren == ')');
  4137.  
  4138.               if (is_id_char (*last_r_paren))
  4139.                 {
  4140.                   const char *id_limit = last_r_paren + 1;
  4141.                   const char *id_start;
  4142.                   size_t id_length;
  4143.                   const def_dec_info *dd_p;
  4144.  
  4145.                   for (id_start = id_limit-1; is_id_char (*id_start); )
  4146.                     check_source (--id_start >= backup_limit, backup_limit);
  4147.                   id_start++;
  4148.                   backup_limit = id_start;
  4149.                   if ((id_length = (size_t) (id_limit - id_start)) == 0)
  4150.                     goto not_missed;
  4151.  
  4152.           {
  4153.             char *func_name = (char *) alloca (id_length + 1);
  4154.             static const char * const stmt_keywords[]
  4155.               = { "if", "else", "do", "while", "for", "switch", "case", "return", 0 };
  4156.             const char * const *stmt_keyword;
  4157.  
  4158.             strncpy (func_name, id_start, id_length);
  4159.             func_name[id_length] = '\0';
  4160.  
  4161.             /* We must check here to see if we are actually looking at
  4162.                a statement rather than an actual function call.  */
  4163.  
  4164.             for (stmt_keyword = stmt_keywords; *stmt_keyword; stmt_keyword++)
  4165.               if (!strcmp (func_name, *stmt_keyword))
  4166.             goto not_missed;
  4167.  
  4168. #if 0
  4169.             fprintf (stderr, "%s: found definition of `%s' at %s(%d)\n",
  4170.                  pname,
  4171.                  func_name,
  4172.                  shortpath (NULL, file_p->hash_entry->symbol),
  4173.                  identify_lineno (id_start));
  4174. #endif                /* 0 */
  4175.             /* We really should check for a match of the function name
  4176.                here also, but why bother.  */
  4177.  
  4178.             for (dd_p = file_p->defs_decs; dd_p; dd_p = dd_p->next_in_file)
  4179.               if (dd_p->is_func_def && dd_p->line == lineno)
  4180.             goto not_missed;
  4181.  
  4182.             /* If we make it here, then we did not know about this
  4183.                function definition.  */
  4184.  
  4185.             fprintf (stderr, "%s: %d: warning: `%s' excluded by preprocessing\n",
  4186.                  shortpath (NULL, file_p->hash_entry->symbol),
  4187.                  identify_lineno (id_start), func_name);
  4188.             fprintf (stderr, "%s: function definition not converted\n",
  4189.                  pname);
  4190.           }
  4191.         not_missed: ;
  4192.                 }
  4193.             }
  4194.         }
  4195.     }
  4196. }
  4197.  
  4198. /* Do all editing operations for a single source file (either a "base" file
  4199.    or an "include" file).  To do this we read the file into memory, keep a
  4200.    virgin copy there, make another cleaned in-core copy of the original file
  4201.    (i.e. one in which all of the comments and preprocessing directives have
  4202.    been replaced with whitespace), then use these two in-core copies of the
  4203.    file to make a new edited in-core copy of the file.  Finally, rename the
  4204.    original file (as a way of saving it), and then write the edited version
  4205.    of the file from core to a disk file of the same name as the original.
  4206.  
  4207.    Note that the trick of making a copy of the original sans comments &
  4208.    preprocessing directives make the editing a whole lot easier.  */
  4209.    
  4210. static void
  4211. edit_file (hp)
  4212.      const hash_table_entry *hp;
  4213. {
  4214.   struct stat stat_buf;
  4215.   const file_info *file_p = hp->fip;
  4216.   char *new_orig_text_base;
  4217.   char *new_orig_text_limit;
  4218.   char *new_clean_text_base;
  4219.   char *new_clean_text_limit;
  4220.   size_t orig_size;
  4221.   size_t repl_size;
  4222.   int first_definition_in_file;
  4223.  
  4224.   /* If we are not supposed to be converting this file, or if there is
  4225.      nothing in there which needs converting, just skip this file.  */
  4226.  
  4227.   if (!needs_to_be_converted (file_p))
  4228.     return;
  4229.  
  4230.   convert_filename = file_p->hash_entry->symbol;
  4231.  
  4232.   /* Convert a file if it is in a directory where we want conversion
  4233.      and the file is not excluded.  */
  4234.  
  4235.   if (!directory_specified_p (convert_filename)
  4236.       || file_excluded_p (convert_filename))
  4237.     {
  4238.       if (!quiet_flag
  4239. #ifdef UNPROTOIZE
  4240.           /* Don't even mention "system" include files unless we are
  4241.              protoizing.  If we are protoizing, we mention these as a
  4242.              gentle way of prodding the user to convert his "system"
  4243.              include files to prototype format.  */
  4244.           && !in_system_include_dir (convert_filename)
  4245. #endif /* defined (UNPROTOIZE) */
  4246.           )
  4247.         fprintf (stderr, "%s: `%s' not converted\n",
  4248.          pname, shortpath (NULL, convert_filename));
  4249.       return;
  4250.     }
  4251.  
  4252.   /* Let the user know what we are up to.  */
  4253.  
  4254.   if (nochange_flag)
  4255.     fprintf (stderr, "%s: would convert file `%s'\n",
  4256.          pname, shortpath (NULL, convert_filename));
  4257.   else
  4258.     fprintf (stderr, "%s: converting file `%s'\n",
  4259.          pname, shortpath (NULL, convert_filename));
  4260.   fflush (stderr);
  4261.  
  4262.   /* Find out the size (in bytes) of the original file.  */
  4263.  
  4264.   /* The cast avoids an erroneous warning on AIX.  */
  4265.   if (my_stat ((char *)convert_filename, &stat_buf) == -1)
  4266.     {
  4267.       fprintf (stderr, "%s: can't get status for file `%s': %s\n",
  4268.            pname, shortpath (NULL, convert_filename), my_strerror(errno));
  4269.       return;
  4270.     }
  4271.   orig_size = stat_buf.st_size;
  4272.  
  4273.   /* Allocate a buffer to hold the original text.  */
  4274.  
  4275.   orig_text_base = new_orig_text_base = (char *) xmalloc (orig_size + 2);
  4276.   orig_text_limit = new_orig_text_limit = new_orig_text_base + orig_size;
  4277.  
  4278.   /* Allocate a buffer to hold the cleaned-up version of the original text.  */
  4279.  
  4280.   clean_text_base = new_clean_text_base = (char *) xmalloc (orig_size + 2);
  4281.   clean_text_limit = new_clean_text_limit = new_clean_text_base + orig_size;
  4282.   clean_read_ptr = clean_text_base - 1;
  4283.  
  4284.   /* Allocate a buffer that will hopefully be large enough to hold the entire
  4285.      converted output text.  As an initial guess for the maximum size of the
  4286.      output buffer, use 125% of the size of the original + some extra.  This
  4287.      buffer can be expanded later as needed.  */
  4288.  
  4289.   repl_size = orig_size + (orig_size >> 2) + 4096;
  4290.   repl_text_base = (char *) xmalloc (repl_size + 2);
  4291.   repl_text_limit = repl_text_base + repl_size - 1;
  4292.   repl_write_ptr = repl_text_base - 1;
  4293.  
  4294.   {
  4295.     int input_file;
  4296.  
  4297.     /* Open the file to be converted in READ ONLY mode.  */
  4298.  
  4299.     if ((input_file = my_open (convert_filename, O_RDONLY, 0444)) == -1)
  4300.       {
  4301.         fprintf (stderr, "%s: can't open file `%s' for reading: %s\n",
  4302.          pname, shortpath (NULL, convert_filename),
  4303.          my_strerror(errno));
  4304.         return;
  4305.       }
  4306.  
  4307.     /* Read the entire original source text file into the original text buffer
  4308.        in one swell fwoop.  Then figure out where the end of the text is and
  4309.        make sure that it ends with a newline followed by a null.  */
  4310.  
  4311.     if (safe_read (input_file, new_orig_text_base, orig_size) != orig_size)
  4312.       {
  4313.         close (input_file);
  4314.         fprintf (stderr, "\n%s: error reading input file `%s': %s\n",
  4315.          pname, shortpath (NULL, convert_filename),
  4316.          my_strerror(errno));
  4317.         return;
  4318.       }
  4319.  
  4320.     close (input_file);
  4321.   }
  4322.  
  4323.   if (orig_size == 0 || orig_text_limit[-1] != '\n')
  4324.     {
  4325.       *new_orig_text_limit++ = '\n';
  4326.       orig_text_limit++;
  4327.     }
  4328.  
  4329.   /* Create the cleaned up copy of the original text.  */
  4330.  
  4331.   memcpy (new_clean_text_base, orig_text_base,
  4332.       (size_t) (orig_text_limit - orig_text_base));
  4333.   do_cleaning (new_clean_text_base, new_clean_text_limit);
  4334.  
  4335. #if 0
  4336.   {
  4337.     int clean_file;
  4338.     size_t clean_size = orig_text_limit - orig_text_base;
  4339.     char *const clean_filename = (char *) alloca (strlen (convert_filename) + 6 + 1);
  4340.  
  4341.     /* Open (and create) the clean file.  */
  4342.   
  4343.     strcpy (clean_filename, convert_filename);
  4344.     strcat (clean_filename, ".clean");
  4345.     if ((clean_file = creat (clean_filename, 0666)) == -1)
  4346.       {
  4347.         fprintf (stderr, "%s: can't create/open clean file `%s': %s\n",
  4348.          pname, shortpath (NULL, clean_filename),
  4349.          my_strerror(errno));
  4350.         return;
  4351.       }
  4352.   
  4353.     /* Write the clean file.  */
  4354.   
  4355.     safe_write (clean_file, new_clean_text_base, clean_size, clean_filename);
  4356.   
  4357.     close (clean_file);
  4358.   }
  4359. #endif /* 0 */
  4360.  
  4361.   /* Do a simplified scan of the input looking for things that were not
  4362.      mentioned in the aux info files because of the fact that they were
  4363.      in a region of the source which was preprocessed-out (via #if or
  4364.      via #ifdef).  */
  4365.  
  4366.   scan_for_missed_items (file_p);
  4367.  
  4368.   /* Setup to do line-oriented forward seeking in the clean text buffer.  */
  4369.  
  4370.   last_known_line_number = 1;
  4371.   last_known_line_start = clean_text_base;
  4372.  
  4373.   /* Now get down to business and make all of the necessary edits.  */
  4374.  
  4375.   {
  4376.     const def_dec_info *def_dec_p;
  4377.  
  4378.     first_definition_in_file = 1;
  4379.     def_dec_p = file_p->defs_decs;
  4380.     for (; def_dec_p; def_dec_p = def_dec_p->next_in_file)
  4381.       {
  4382.         const char *clean_text_p = seek_to_line (def_dec_p->line);
  4383.   
  4384.         /* clean_text_p now points to the first character of the line which
  4385.            contains the `terminator' for the declaration or definition that
  4386.            we are about to process.  */
  4387.   
  4388. #ifndef UNPROTOIZE
  4389.   
  4390.         if (global_flag && def_dec_p->is_func_def && first_definition_in_file)
  4391.           {
  4392.             add_global_decls (def_dec_p->file, clean_text_p);
  4393.             first_definition_in_file = 0;
  4394.           }
  4395.  
  4396.         /* Don't edit this item if it is already in prototype format or if it
  4397.            is a function declaration and we have found no corresponding
  4398.            definition.  */
  4399.  
  4400.         if (def_dec_p->prototyped
  4401.          || (!def_dec_p->is_func_def && !def_dec_p->definition))
  4402.           continue;
  4403.  
  4404. #endif /* !defined (UNPROTOIZE) */
  4405.  
  4406.         if (def_dec_p->is_func_def)
  4407.           edit_fn_definition (def_dec_p, clean_text_p);
  4408.         else
  4409. #ifndef UNPROTOIZE
  4410.       if (def_dec_p->is_implicit)
  4411.         add_local_decl (def_dec_p, clean_text_p);
  4412.       else
  4413. #endif /* !defined (UNPROTOIZE) */
  4414.             edit_fn_declaration (def_dec_p, clean_text_p);
  4415.       }
  4416.   }
  4417.  
  4418.   /* Finalize things.  Output the last trailing part of the original text.  */
  4419.  
  4420.   output_up_to (clean_text_limit - 1);
  4421.  
  4422.   /* If this is just a test run, stop now and just deallocate the buffers.  */
  4423.  
  4424.   if (nochange_flag)
  4425.     {
  4426.       free (new_orig_text_base);
  4427.       free (new_clean_text_base);
  4428.       free (repl_text_base);
  4429.       return;
  4430.     }
  4431.  
  4432.   /* Change the name of the original input file.  This is just a quick way of
  4433.      saving the original file.  */
  4434.  
  4435.   if (!nosave_flag)
  4436.     {
  4437.       char *new_filename =
  4438.           (char *) xmalloc (strlen (convert_filename) + strlen (save_suffix) + 2);
  4439.   
  4440.       strcpy (new_filename, convert_filename);
  4441.       strcat (new_filename, save_suffix);
  4442.       if (my_link (convert_filename, new_filename) == -1)
  4443.         {
  4444.           if (errno == EEXIST)
  4445.             {
  4446.               if (!quiet_flag)
  4447.                 fprintf (stderr, "%s: warning: file `%s' already saved in `%s'\n",
  4448.              pname,
  4449.              shortpath (NULL, convert_filename),
  4450.              shortpath (NULL, new_filename));
  4451.             }
  4452.           else
  4453.             {
  4454.               fprintf (stderr, "%s: can't link file `%s' to `%s': %s\n",
  4455.                pname,
  4456.                shortpath (NULL, convert_filename),
  4457.                shortpath (NULL, new_filename),
  4458.                my_strerror(errno));
  4459.               return;
  4460.             }
  4461.         }
  4462.     }
  4463.  
  4464.   if (my_unlink (convert_filename) == -1)
  4465.     {
  4466.       fprintf (stderr, "%s: can't delete file `%s': %s\n",
  4467.            pname, shortpath (NULL, convert_filename), my_strerror(errno));
  4468.       return;
  4469.     }
  4470.  
  4471.   {
  4472.     int output_file;
  4473.  
  4474.     /* Open (and create) the output file.  */
  4475.   
  4476.     if ((output_file = creat (convert_filename, 0666)) == -1)
  4477.       {
  4478.         fprintf (stderr, "%s: can't create/open output file `%s': %s\n",
  4479.          pname, shortpath (NULL, convert_filename),
  4480.          my_strerror(errno));
  4481.         return;
  4482.       }
  4483.   
  4484.     /* Write the output file.  */
  4485.   
  4486.     {
  4487.       unsigned int out_size = (repl_write_ptr + 1) - repl_text_base;
  4488.   
  4489.       safe_write (output_file, repl_text_base, out_size, convert_filename);
  4490.     }
  4491.   
  4492.     close (output_file);
  4493.   }
  4494.  
  4495.   /* Deallocate the conversion buffers.  */
  4496.  
  4497.   free (new_orig_text_base);
  4498.   free (new_clean_text_base);
  4499.   free (repl_text_base);
  4500.  
  4501.   /* Change the mode of the output file to match the original file.  */
  4502.  
  4503.   /* The cast avoids an erroneous warning on AIX.  */
  4504.   if (my_chmod ((char *)convert_filename, stat_buf.st_mode) == -1)
  4505.     fprintf (stderr, "%s: can't change mode of file `%s': %s\n",
  4506.          pname, shortpath (NULL, convert_filename), my_strerror(errno));
  4507.  
  4508.   /* Note:  We would try to change the owner and group of the output file
  4509.      to match those of the input file here, except that may not be a good
  4510.      thing to do because it might be misleading.  Also, it might not even
  4511.      be possible to do that (on BSD systems with quotas for instance).  */
  4512. }
  4513.  
  4514. /* Do all of the individual steps needed to do the protoization (or
  4515.    unprotoization) of the files referenced in the aux_info files given
  4516.    in the command line.  */
  4517.  
  4518. static void
  4519. do_processing ()
  4520. {
  4521.   const char * const *base_pp;
  4522.   const char * const * const end_pps
  4523.     = &base_source_filenames[n_base_source_files];
  4524.  
  4525. #ifndef UNPROTOIZE
  4526.   int syscalls_len;
  4527. #endif /* !defined (UNPROTOIZE) */
  4528.  
  4529.   /* One-by-one, check (and create if necessary), open, and read all of the
  4530.      stuff in each aux_info file.  After reading each aux_info file, the
  4531.      aux_info_file just read will be automatically deleted unless the
  4532.      keep_flag is set.  */
  4533.  
  4534.   for (base_pp = base_source_filenames; base_pp < end_pps; base_pp++)
  4535.     process_aux_info_file (*base_pp, keep_flag, 0);
  4536.  
  4537. #ifndef UNPROTOIZE
  4538.  
  4539.   /* Also open and read the special SYSCALLS.c aux_info file which gives us
  4540.      the prototypes for all of the standard system-supplied functions.  */
  4541.  
  4542.   if (nondefault_syscalls_dir)
  4543.     {
  4544.       syscalls_absolute_filename
  4545.         = (char *) xmalloc (strlen (nondefault_syscalls_dir)
  4546.                             + sizeof (syscalls_filename) + 1);
  4547.       strcpy (syscalls_absolute_filename, nondefault_syscalls_dir);
  4548.     }
  4549.   else
  4550.     {
  4551.       syscalls_absolute_filename
  4552.         = (char *) xmalloc (strlen (default_syscalls_dir)
  4553.                             + sizeof (syscalls_filename) + 1);
  4554.       strcpy (syscalls_absolute_filename, default_syscalls_dir);
  4555.     }
  4556.  
  4557.   syscalls_len = strlen (syscalls_absolute_filename);
  4558.   if (*(syscalls_absolute_filename + syscalls_len - 1) != '/')
  4559.     {
  4560.       *(syscalls_absolute_filename + syscalls_len++) = '/';
  4561.       *(syscalls_absolute_filename + syscalls_len) = '\0';
  4562.     }
  4563.   strcat (syscalls_absolute_filename, syscalls_filename);
  4564.   
  4565.   /* Call process_aux_info_file in such a way that it does not try to
  4566.      delete the SYSCALLS aux_info file.  */
  4567.  
  4568.   process_aux_info_file (syscalls_absolute_filename, 1, 1);
  4569.  
  4570. #endif /* !defined (UNPROTOIZE) */
  4571.  
  4572.   /* When we first read in all of the information from the aux_info files
  4573.      we saved in it descending line number order, because that was likely to
  4574.      be faster.  Now however, we want the chains of def & dec records to
  4575.      appear in ascending line number order as we get further away from the
  4576.      file_info record that they hang from.  The following line causes all of
  4577.      these lists to be rearranged into ascending line number order.  */
  4578.  
  4579.   visit_each_hash_node (filename_primary, reverse_def_dec_list);
  4580.  
  4581. #ifndef UNPROTOIZE
  4582.  
  4583.   /* Now do the "real" work.  The following line causes each declaration record
  4584.      to be "visited".  For each of these nodes, an attempt is made to match
  4585.      up the function declaration with a corresponding function definition,
  4586.      which should have a full prototype-format formals list with it.  Once
  4587.      these match-ups are made, the conversion of the function declarations
  4588.      to prototype format can be made.  */
  4589.  
  4590.   visit_each_hash_node (function_name_primary, connect_defs_and_decs);
  4591.  
  4592. #endif /* !defined (UNPROTOIZE) */
  4593.  
  4594.   /* Now convert each file that can be converted (and needs to be).  */
  4595.  
  4596.   visit_each_hash_node (filename_primary, edit_file);
  4597.  
  4598. #ifndef UNPROTOIZE
  4599.  
  4600.   /* If we are working in cplusplus mode, try to rename all .c files to .C
  4601.      files.  Don't panic if some of the renames don't work.  */
  4602.  
  4603.   if (cplusplus_flag && !nochange_flag)
  4604.     visit_each_hash_node (filename_primary, rename_c_file);
  4605.  
  4606. #endif /* !defined (UNPROTOIZE) */
  4607. }
  4608.  
  4609. static struct option longopts[] =
  4610. {
  4611.   {"version", 0, 0, 'V'},
  4612.   {"file_name", 0, 0, 'p'},
  4613.   {"quiet", 0, 0, 'q'},
  4614.   {"silent", 0, 0, 'q'},
  4615.   {"force", 0, 0, 'f'},
  4616.   {"keep", 0, 0, 'k'},
  4617.   {"nosave", 0, 0, 'N'},
  4618.   {"nochange", 0, 0, 'n'},
  4619.   {"compiler-options", 1, 0, 'c'},
  4620.   {"exclude", 1, 0, 'x'},
  4621.   {"directory", 1, 0, 'd'},
  4622. #ifdef UNPROTOIZE
  4623.   {"indent", 1, 0, 'i'},
  4624. #else
  4625.   {"local", 0, 0, 'l'},
  4626.   {"global", 0, 0, 'g'},
  4627.   {"c++", 0, 0, 'C'},
  4628.   {"syscalls-dir", 1, 0, 'B'},
  4629. #endif
  4630.   {0, 0, 0, 0}
  4631. };
  4632.  
  4633. int
  4634. main (argc, argv)
  4635.      int argc;
  4636.      char **const argv;
  4637. {
  4638.   int longind;
  4639.   int c;
  4640.   const char *params = "";
  4641.  
  4642.   pname = rindex (argv[0], '/');
  4643.   pname = pname ? pname+1 : argv[0];
  4644.  
  4645.   cwd_buffer = getpwd ();
  4646.   if (!cwd_buffer)
  4647.     {
  4648.       fprintf (stderr, "%s: cannot get working directory: %s\n",
  4649.            pname, my_strerror(errno));
  4650.       exit (1);
  4651.     }
  4652.  
  4653.   /* By default, convert the files in the current directory.  */
  4654.   directory_list = string_list_cons (cwd_buffer, NULL);
  4655.  
  4656.   while ((c = getopt_long (argc, argv,
  4657. #ifdef UNPROTOIZE
  4658.                "c:d:i:knNp:qvVx:",
  4659. #else
  4660.                "B:c:Cd:gklnNp:qvVx:",
  4661. #endif
  4662.                longopts, &longind)) != EOF)
  4663.     {
  4664.       if (c == 0)        /* Long option. */
  4665.     c = longopts[longind].val;
  4666.       switch (c)
  4667.     {
  4668.     case 'p':
  4669.       compiler_file_name = optarg;
  4670.       break;
  4671.     case 'd':
  4672.       directory_list
  4673.         = string_list_cons (abspath (NULL, optarg), directory_list);
  4674.       break;
  4675.     case 'x':
  4676.       exclude_list = string_list_cons (optarg, exclude_list);
  4677.       break;
  4678.         
  4679.     case 'v':
  4680.     case 'V':
  4681.       version_flag = 1;
  4682.       break;
  4683.     case 'q':
  4684.       quiet_flag = 1;
  4685.       break;
  4686. #if 0
  4687.     case 'f':
  4688.       force_flag = 1;
  4689.       break;
  4690. #endif
  4691.     case 'n':
  4692.       nochange_flag = 1;
  4693.       keep_flag = 1;
  4694.       break;
  4695.     case 'N':
  4696.       nosave_flag = 1;
  4697.       break;
  4698.     case 'k':
  4699.       keep_flag = 1;
  4700.       break;
  4701.     case 'c':
  4702.       params = optarg;
  4703.       break;
  4704. #ifdef UNPROTOIZE
  4705.     case 'i':
  4706.       indent_string = optarg;
  4707.       break;
  4708. #else                /* !defined (UNPROTOIZE) */
  4709.     case 'l':
  4710.       local_flag = 1;
  4711.       break;
  4712.     case 'g':
  4713.       global_flag = 1;
  4714.       break;
  4715.     case 'C':
  4716.       cplusplus_flag = 1;
  4717.       break;
  4718.     case 'B':
  4719.       nondefault_syscalls_dir = optarg;
  4720.       break;
  4721. #endif                /* !defined (UNPROTOIZE) */
  4722.     default:
  4723.       usage ();
  4724.     }
  4725.     }
  4726.  
  4727.   /* Set up compile_params based on -p and -c options.  */
  4728.   munge_compile_params (params);
  4729.  
  4730.   n_base_source_files = argc - optind;
  4731.  
  4732.   /* Now actually make a list of the base source filenames.  */
  4733.  
  4734.   base_source_filenames =
  4735.     (const char **) xmalloc ((n_base_source_files + 1) * sizeof (char *));
  4736.   n_base_source_files = 0;
  4737.   for (; optind < argc; optind++)
  4738.     {
  4739.       const char *path = abspath (NULL, argv[optind]);
  4740.       int len = strlen (path);
  4741.  
  4742.       if (path[len-1] == 'c' && path[len-2] == '.')
  4743.     base_source_filenames[n_base_source_files++] = path;
  4744.       else
  4745.     {
  4746.       fprintf (stderr, "%s: input file names must have .c suffixes: %s\n",
  4747.            pname, shortpath (NULL, path));
  4748.       errors++;
  4749.     }
  4750.     }
  4751.  
  4752. #ifndef UNPROTOIZE
  4753.   /* We are only interested in the very first identifier token in the
  4754.      definition of `va_list', so if there is more junk after that first
  4755.      identifier token, delete it from the `varargs_style_indicator'.  */
  4756.   {
  4757.     const char *cp;
  4758.  
  4759.     for (cp = varargs_style_indicator; isalnum (*cp) || *cp == '_'; cp++)
  4760.       continue;
  4761.     if (*cp != 0)
  4762.       varargs_style_indicator = savestring (varargs_style_indicator,
  4763.                         cp - varargs_style_indicator);
  4764.   }
  4765. #endif /* !defined (UNPROTOIZE) */
  4766.  
  4767.   if (errors)
  4768.     usage ();
  4769.   else
  4770.     {
  4771.       if (version_flag)
  4772.         fprintf (stderr, "%s: %s\n", pname, version_string);
  4773.       do_processing ();
  4774.     }
  4775.   if (errors)
  4776.     exit (1);
  4777.   else
  4778.     exit (0);
  4779.   return 1;
  4780. }
  4781.